Skip to content
Snippets Groups Projects
Unverified Commit 0a45a565 authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[refactor] delete unused function

parent 10b8c5e0
No related branches found
No related tags found
No related merge requests found
......@@ -40,14 +40,6 @@ def addCaData(data, configfile):
with open(caFile) as ca:
data['caCertString'] = ca.read().strip()
def writeOutput(data, infile, outfile):
with open(infile) as infile:
s = Template(infile.read())
with open(outfile, 'w') as outf:
outf.write(s.substitute(data))
def bail(msg=None):
if not msg:
print("ERROR: not enough arguments!")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment