Fixed a minor error with removing of force_unicode

This commit is contained in:
Dave Halter
2020-07-02 01:51:06 +02:00
parent 2c1e591718
commit b639e7fd11

View File

@@ -93,7 +93,7 @@ def _add_strings(context, nodes, add_slash=False):
return None
if not first and add_slash:
string += os.path.sep
string += s
string += str(s, errors='replace')
first = False
return string