Skip to content

Commit 35c4507

Browse files
committed
Don't warn about missing files, this is normal.
It happens when there is no information to put in the files.
1 parent 7197268 commit 35c4507

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sc2reader/resources.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,7 @@ def _read_data(self, data_file, reader):
610610
self.raw_data[data_file] = reader(data_buffer, self)
611611
elif self.opt.debug and data_file != 'replay.message.events':
612612
raise ValueError("{0} not found in archive".format(data_file))
613-
else:
614-
self.logger.error("{0} not found in archive".format(data_file))
613+
615614

616615
class Map(Resource):
617616
url_template = 'http://{0}.depot.battle.net:1119/{1}.s2ma'

0 commit comments

Comments
 (0)