Working on removing circular import

This commit is contained in:
rperper
2018-11-14 13:48:37 -05:00
parent 6591aae635
commit 4173585f22

View File

@@ -6,7 +6,7 @@ import argparse
import os
import shlex
import socket
import install
import install as inst
@@ -41,8 +41,8 @@ class FirewallUtilities:
res = subprocess.call(cmd)
if install.preFlightsChecks.resFailed(install.get_distro(), res):
install.preFlightsChecks.stdOut("Failed to install rule: " + command + " Error #" + str(res), 1)
if inst.preFlightsChecks.resFailed(inst.get_distro(), res):
inst.preFlightsChecks.stdOut("Failed to install rule: " + command + " Error #" + str(res), 1)
return 0
except OSError, msg: