Skip to content

Commit 35a58f0

Browse files
committed
Remove some debug code from load_replays..
1 parent b7f9c9e commit 35a58f0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

sc2reader/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ def load_replays(self, replay_collection, options=None, **new_options):
5252
full_path = os.path.join(directory, replay_collection)
5353
for replay_path in utils.get_replay_files(full_path, **options):
5454
with open(replay_path) as replay_file:
55-
try:
56-
yield self.load_replay(replay_file, options=options)
57-
except exceptions.MPQError as e:
58-
print e
55+
yield self.load_replay(replay_file, options=options)
5956

6057
else:
6158
for replay_file in replay_collection:

0 commit comments

Comments
 (0)