Skip to content

Commit 49376c5

Browse files
committed
Fixes bug introduced during the file-like object patch.
1 parent 95fcbcc commit 49376c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def read_file(self, file_in, **user_options):
178178

179179
# Also support filepath strings
180180
else:
181-
replays = self.read(file_in, **options)
181+
replays = self.read(file_in, **user_options)
182182

183183
# While normal usage would suggest passing in only filenames, it is
184184
# possible that directories could be passed in. Don't fail silently!

0 commit comments

Comments
 (0)