Fixed path.

This commit is contained in:
Michael Herzberg 2018-06-10 11:21:23 +01:00
parent d88a7b1e3c
commit 5b9971ecec
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ def find(archive, pattern):
def find_from_file(archive, extidlistfile):
with open(extidlistfile, 'r') as f:
for line in f.readlines():
yield archive_file(archive, line.strip())
yield archive_file(os.path.join(archive, "data"), line.strip())
def parse_args(argv):