We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a3dbf commit 2ecd0b3Copy full SHA for 2ecd0b3
new_units.py
@@ -18,10 +18,10 @@
18
for line in new_units:
19
new_unit_name = line.strip().split(',')[1]
20
if new_unit_name not in UNIT_LOOKUP:
21
- print "{0},{1}".format(new_unit_name,new_unit_name)
+ print("{0},{1}".format(new_unit_name,new_unit_name))
22
23
-print
24
+print('')
25
26
ABIL_LOOKUP = dict()
27
for entry in pkgutil.get_data('sc2reader.data', 'ability_lookup.csv').split('\n'):
@@ -33,4 +33,4 @@
33
for line in new_abilities:
34
new_ability_name = line.strip().split(',')[1]
35
if new_ability_name not in ABIL_LOOKUP:
36
- print "{0},{1}".format(new_ability_name,new_ability_name)
+ print("{0},{1}".format(new_ability_name,new_ability_name))
0 commit comments