diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-04 04:08:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-04 04:08:15 +0300 |
commit | 188460a91bd37ca6f18fb89e448819b642953be7 (patch) | |
tree | 12fa7b29fa207240fe8ddf19d70f5a5333bf1233 /test/toolkit.py | |
parent | refactoring (diff) | |
download | aes-tools-188460a91bd37ca6f18fb89e448819b642953be7.tar.gz aes-tools-188460a91bd37ca6f18fb89e448819b642953be7.zip |
code style & refactoring
Diffstat (limited to '')
-rw-r--r-- | test/toolkit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/toolkit.py b/test/toolkit.py index bc27dc8..f8a74ba 100644 --- a/test/toolkit.py +++ b/test/toolkit.py @@ -138,8 +138,8 @@ class Tools: '--algorithm', str(algorithm), '--mode', str(mode), '--key', key, - '--input-path', input_path, - '--output-path', output_path + '--input', input_path, + '--output', output_path ] if iv is not None: args.extend(('--iv', iv)) |