Skip to content

Commit f5a8474

Browse files
committed
Fix typo
1 parent 64a4c71 commit f5a8474

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pyarmor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ def _obfuscate(args):
456456
output = args.output
457457
pat = '%sinclude *.py' % ('global-' if args.recursive else '')
458458
files = Project.build_manifest(
459-
[pat.decode if hasattr('', 'decode') else pat], path)
459+
[pat.decode() if hasattr('', 'decode') else pat], path)
460460
filepairs = [(os.path.join(path, x), os.path.join(output, x))
461461
for x in files]
462462

0 commit comments

Comments
 (0)