Commit 3a8354fb by JR Dalrymple

Fixed path issue

parent ae5bd9ae
...@@ -146,7 +146,7 @@ for newService in servicesToCreate: ...@@ -146,7 +146,7 @@ for newService in servicesToCreate:
outLines.append("\tservice_description\t\t\t" + newService + "\n") outLines.append("\tservice_description\t\t\t" + newService + "\n")
else: else:
outLines.append(line + "\n") outLines.append(line + "\n")
newFilename = cfgOutDir + newService + ".cfg" newFilename = cfgOutDir + '/' + newService + ".cfg"
f = open(newFilename, 'w') f = open(newFilename, 'w')
for line in outLines: for line in outLines:
f.write(line) f.write(line)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment