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 0648ba1 commit 8da9225Copy full SHA for 8da9225
examples/sc2store.py
@@ -172,15 +172,15 @@ def main():
172
173
for path in args.paths:
174
for file_name in sc2reader.utils.get_files(path, depth=0):
175
- print "CREATING: {0}".format(file_name)
+ print("CREATING: {0}".format(file_name))
176
db.add(Game(sc2reader.read_file(file_name), db))
177
178
db.commit()
179
180
- print list(db.query(distinct(Person.name)).all())
+ print(list(db.query(distinct(Person.name)).all()))
181
182
#for row in db.query(distinct(Person.name)).all():
183
- # print row
+ # print(row)
184
185
186
def load_session(args):
0 commit comments