diff options
Diffstat (limited to 'branding/scripts')
-rw-r--r-- | branding/scripts/gen-providers-json.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/branding/scripts/gen-providers-json.py b/branding/scripts/gen-providers-json.py index 8e1c10b..beef3fe 100644 --- a/branding/scripts/gen-providers-json.py +++ b/branding/scripts/gen-providers-json.py @@ -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!") |