mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
remove more Python2 hybridation
This commit is contained in:
committed by
Scott Talbert
parent
0257f755cf
commit
323e78c085
@@ -198,10 +198,7 @@ def img2py(image_file, python_file,
|
||||
while data:
|
||||
part = data[:72]
|
||||
data = data[72:]
|
||||
if sys.version > '3':
|
||||
output = ' %s' % part
|
||||
else:
|
||||
output = ' "%s"' % part
|
||||
output = ' %s' % part
|
||||
if not data:
|
||||
output += ")"
|
||||
lines.append(output)
|
||||
|
||||
Reference in New Issue
Block a user