Skip to content

Commit

Permalink
Updated gamecontroller database sorting script to work with Python 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Oct 29, 2014
1 parent 032b14e commit 2bdc5c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/joystick/sort_controllers.py
Expand Up @@ -30,9 +30,9 @@ def write_controllers():
for entry in sorted(controllers, key=lambda entry: entry[2]):
line = "".join(entry) + "\n"
if not line.endswith(",\n") and not line.endswith("*/\n"):
print "Warning: '%s' is missing a comma at the end of the line" % (line)
print("Warning: '%s' is missing a comma at the end of the line" % (line))
if (entry[1] in controller_guids):
print "Warning: entry '%s' is duplicate of entry '%s'" % (entry[2], controller_guids[entry[1]][2])
print("Warning: entry '%s' is duplicate of entry '%s'" % (entry[2], controller_guids[entry[1]][2]))
controller_guids[entry[1]] = entry

output.write(line)
Expand All @@ -48,7 +48,7 @@ def write_controllers():
write_controllers()
output.write(line)
elif (line.startswith("#")):
print "Parsing " + line.strip()
print("Parsing " + line.strip())
write_controllers()
output.write(line)
else:
Expand All @@ -60,4 +60,4 @@ def write_controllers():
output.write(line)

output.close()
print "Finished writing %s.new" % filename
print("Finished writing %s.new" % filename)

0 comments on commit 2bdc5c9

Please sign in to comment.