fixed spacing in input file for core lib
This commit is contained in:
parent
747c2792a1
commit
4ade93a5a6
1 changed files with 3 additions and 3 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue