From 558b37480a760e7a03368c005403cce77faeaeb9 Mon Sep 17 00:00:00 2001 From: decalage2 Date: Tue, 1 Jan 2019 18:30:49 +0100 Subject: [PATCH] olevba: removed support for Python 2.6 --- oletools/olevba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oletools/olevba.py b/oletools/olevba.py index 38474e4..5d1f71a 100644 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -3607,7 +3607,7 @@ def parse_args(cmd_line_args=None): parser.add_option("-r", action="store_true", dest="recursive", help='find files recursively in subdirectories.') parser.add_option("-z", "--zip", dest='zip_password', type='str', default=None, - help='if the file is a zip archive, open all files from it, using the provided password (requires Python 2.6+)') + help='if the file is a zip archive, open all files from it, using the provided password.') parser.add_option("-f", "--zipfname", dest='zip_fname', type='str', default='*', help='if the file is a zip archive, file(s) to be opened within the zip. Wildcards * and ? are supported. (default:*)') # output mode; could make this even simpler with add_option(type='choice') but that would make -- libgit2 0.21.4