From 118a0420658dbb8a690fb9b09a747606dae4275a Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 11 Dec 2019 11:23:20 +0500 Subject: [PATCH] update python path --- install/firewallUtilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/firewallUtilities.py b/install/firewallUtilities.py index 0a4a24dec..8884eae16 100755 --- a/install/firewallUtilities.py +++ b/install/firewallUtilities.py @@ -5,7 +5,7 @@ class FirewallUtilities: @staticmethod def doCommand(command): - from . import install as inst + import install as inst try: cmd = shlex.split(command) res = subprocess.call(cmd)