From bc4ab949d988f12f8e896436b56bbc8b92d815db Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Thu, 5 Apr 2018 17:46:24 -0400 Subject: Fixes relative import for utils opnfv-pyutil was not working due to this relative import. The script would only work out of the pwd. Change-Id: I1ed5db779dd031d019012a814b2dfe27944a2e2f Signed-off-by: Tim Rozet (cherry picked from commit c8f07fda6445b9b3b1fcb9d97f05cd40fffe8daf) --- apex/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apex/utils.py b/apex/utils.py index 56caaefe..f7914613 100644 --- a/apex/utils.py +++ b/apex/utils.py @@ -70,7 +70,7 @@ def fetch_logs(args): def execute_actions(args): for action in VALID_UTILS: if hasattr(args, action) and getattr(args, action): - util_module = __import__('utils') + util_module = __import__('apex').utils func = getattr(util_module, action) logging.info("Executing action: {}".format(action)) func(args) -- cgit 1.2.3-korg