fixed spacing in input file for core lib

This commit is contained in:
bharnden 2019-04-05 22:35:38 -07:00
parent 747c2792a1
commit 4ade93a5a6

View file

@ -9,9 +9,9 @@ QUAGGA_STATE_DIR = "@CORE_STATE_DIR@/run/quagga"
def which(command):
for path in os.environ["PATH"].split(os.pathsep):
command_path = os.path.join(path, command)
if os.path.isfile(command_path) and os.access(command_path, os.X_OK):
return command_path
command_path = os.path.join(path, command)
if os.path.isfile(command_path) and os.access(command_path, os.X_OK):
return command_path
VNODED_BIN = which("vnoded")