Commit 558b37480a760e7a03368c005403cce77faeaeb9
1 parent
8a88bb29
olevba: removed support for Python 2.6
Showing
1 changed file
with
1 additions
and
1 deletions
oletools/olevba.py
| @@ -3607,7 +3607,7 @@ def parse_args(cmd_line_args=None): | @@ -3607,7 +3607,7 @@ def parse_args(cmd_line_args=None): | ||
| 3607 | parser.add_option("-r", action="store_true", dest="recursive", | 3607 | parser.add_option("-r", action="store_true", dest="recursive", |
| 3608 | help='find files recursively in subdirectories.') | 3608 | help='find files recursively in subdirectories.') |
| 3609 | parser.add_option("-z", "--zip", dest='zip_password', type='str', default=None, | 3609 | parser.add_option("-z", "--zip", dest='zip_password', type='str', default=None, |
| 3610 | - help='if the file is a zip archive, open all files from it, using the provided password (requires Python 2.6+)') | 3610 | + help='if the file is a zip archive, open all files from it, using the provided password.') |
| 3611 | parser.add_option("-f", "--zipfname", dest='zip_fname', type='str', default='*', | 3611 | parser.add_option("-f", "--zipfname", dest='zip_fname', type='str', default='*', |
| 3612 | help='if the file is a zip archive, file(s) to be opened within the zip. Wildcards * and ? are supported. (default:*)') | 3612 | help='if the file is a zip archive, file(s) to be opened within the zip. Wildcards * and ? are supported. (default:*)') |
| 3613 | # output mode; could make this even simpler with add_option(type='choice') but that would make | 3613 | # output mode; could make this even simpler with add_option(type='choice') but that would make |