From a5bc3b32311f4cb70b31909b36f4c8bbfa7040c2 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 17 Apr 2021 06:57:31 -0700 Subject: [PATCH] Fix repr() of GSS-TSIG key [Issue #657] --- dns/tsig.py | 9 ++++++--- tests/test_tsig.py | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/dns/tsig.py b/dns/tsig.py index 5c773fff..50b2d47e 100644 --- a/dns/tsig.py +++ b/dns/tsig.py @@ -338,6 +338,9 @@ class Key: self.algorithm == other.algorithm) def __repr__(self): - return f"" + r = f"") -- 2.47.3