From 65449b94e52c10c773a9e6a8f07e654097faae9e Mon Sep 17 00:00:00 2001 From: decalage2 Date: Wed, 8 Mar 2017 22:12:53 +0100 Subject: [PATCH] olevba: fixed previous fix --- oletools/olevba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oletools/olevba.py b/oletools/olevba.py index 702f2fc..fe25239 100644 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -269,7 +269,7 @@ _thismodule_dir = os.path.normpath(os.path.abspath(os.path.dirname(__file__))) _parent_dir = os.path.normpath(os.path.join(_thismodule_dir, '..')) # print('_parent_dir = %r' % _thirdparty_dir) if not _parent_dir in sys.path: - pass #sys.path.insert(0, _parent_dir) + sys.path.insert(0, _parent_dir) from oletools.thirdparty import olefile from oletools.thirdparty.prettytable import prettytable from oletools.thirdparty.xglob import xglob, PathNotFoundException -- libgit2 0.21.4