You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
Merge branch 'master' into python-3.3-to-3.5
This commit is contained in:
@@ -194,9 +194,9 @@ def main_bin():
|
||||
try:
|
||||
result = main(src_base, out_base, pyc_paths, source_paths, outfile,
|
||||
**options)
|
||||
result = list(result) + [options.get('do_verify', None)]
|
||||
result = [options.get('do_verify', None)] + list(result)
|
||||
if len(pyc_paths) > 1:
|
||||
mess = status_msg(do_verify, *result)
|
||||
mess = status_msg(*result)
|
||||
print('# ' + mess)
|
||||
pass
|
||||
except ImportError as e:
|
||||
|
Reference in New Issue
Block a user