From: Christoph Egger Date: Fri, 8 Jan 2016 15:49:50 +0000 (+0100) Subject: Whitespace cleanup X-Git-Url: https://git.siccegge.de//index.cgi?p=tools.git;a=commitdiff_plain;h=3a5e5c7c003873d756cdd190a3fa6aeeb7be14a4 Whitespace cleanup --- diff --git a/make-tlsa b/make-tlsa index 4c823de..bdc9e46 100755 --- a/make-tlsa +++ b/make-tlsa @@ -16,9 +16,9 @@ def main(): for altname in altnames: subprocess.Popen(["ldns-dane", "create", "-c", certname, altname, "443", "3", "1", "1"]) - - + + def parse_cert(fname): names = [] with open(fname) as fhd: @@ -38,7 +38,7 @@ def parse_cert(fname): names.append(str(result)) return names - + if __name__ == '__main__': main()