From: Bob Halley Date: Sun, 17 May 2020 02:26:47 +0000 (-0700) Subject: indentation lint X-Git-Tag: v2.0.0rc1~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d969558244f1732e05c7ab42f292a0bf62e6b62;p=thirdparty%2Fdnspython.git indentation lint --- diff --git a/dns/dnssec.py b/dns/dnssec.py index 36694ffd..1f5cf0ed 100644 --- a/dns/dnssec.py +++ b/dns/dnssec.py @@ -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))