]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
indentation lint
authorBob Halley <halley@dnspython.org>
Sun, 17 May 2020 02:26:47 +0000 (19:26 -0700)
committerBob Halley <halley@dnspython.org>
Sun, 17 May 2020 02:26:47 +0000 (19:26 -0700)
dns/dnssec.py

index 36694ffd3903f646ab145a3267d18d2a360ab30f..1f5cf0edd3fda3ef831acbd10484925ffacd7e9d 100644 (file)
@@ -207,7 +207,7 @@ def make_ds(name, key, algorithm, origin=None):
     digest = dshash.digest()
 
     dsrdata = struct.pack("!HBB", key_id(key), key.algorithm, algorithm) + \
-            digest
+        digest
     return dns.rdata.from_wire(dns.rdataclass.IN, dns.rdatatype.DS, dsrdata, 0,
                                len(dsrdata))