From 3d568e80b87b1b2bc64409aa7c6ca32b5bcda5a0 Mon Sep 17 00:00:00 2001 From: Nzix Date: Sun, 21 Oct 2018 16:15:41 +0800 Subject: [PATCH] fix mistake #5 --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index ebc55f6..01943a9 100644 --- a/app.py +++ b/app.py @@ -82,7 +82,7 @@ for item in args.input: if os.path.isdir(item): files += [os.path.join(item, _file) for _file in os.listdir(item) if os.path.splitext(_file)[-1] == '.ncm'] else: - flles += [item] + files += [item] if sys.version[0] == '2': files = [file_name.decode(sys.stdin.encoding) for file_name in files]