mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Try to fix issue #177 .
See: https://github.com/shlomif/PySolFC/issues/177 - custom game wizard failure due to bytestring vs. unicode string. Thanks to @Neelix57 and @Butterfly for the report and some investigation.
This commit is contained in:
parent
05d78d5490
commit
7c597dfa5f
1 changed files with 9 additions and 3 deletions
|
@ -429,11 +429,17 @@ class MyCustomGame(CustomGame):
|
||||||
# escape
|
# escape
|
||||||
v = v.replace('\\', '\\\\')
|
v = v.replace('\\', '\\\\')
|
||||||
v = v.replace("'", "\\'")
|
v = v.replace("'", "\\'")
|
||||||
if isinstance(v, six.text_type):
|
v = v.replace("\n", "\\n")
|
||||||
v = v.encode('utf-8')
|
v = v.replace("\r", "\\r")
|
||||||
|
v = v.replace("\t", "\\t")
|
||||||
|
# See: https://github.com/shlomif/PySolFC/issues/177
|
||||||
|
DISABLE_DUE_TO_GH177 = False
|
||||||
|
if DISABLE_DUE_TO_GH177:
|
||||||
|
if isinstance(v, six.text_type):
|
||||||
|
v = v.encode('utf-8')
|
||||||
if not v:
|
if not v:
|
||||||
v = 'Invalid Game Name'
|
v = 'Invalid Game Name'
|
||||||
fd.write(" '%s': '%s',\n" % (w.var_name, v))
|
fd.write(" '{}': '{}',\n".format(w.var_name, v))
|
||||||
fd.write(" 'gameid': %i,\n" % gameid)
|
fd.write(" 'gameid': %i,\n" % gameid)
|
||||||
|
|
||||||
fd.write('''\
|
fd.write('''\
|
||||||
|
|
Loading…
Add table
Reference in a new issue