ascension

Migrate DNS zones to the GNU Name System
Log | Files | Refs | README | LICENSE

commit bd113abbde8128bc073e0c7ea22b1ac963bb61b1
parent ae37dfe8479a52aed1242ff2ce4de1a0235c5970
Author: rexxnor <rexxnor+gnunet@brief.li>
Date:   Wed,  1 May 2019 12:28:48 +0200

fixed bug with string and int comparison

Diffstat:
Mascension/ascension.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ascension/ascension.py b/ascension/ascension.py @@ -546,7 +546,7 @@ class Ascender(): refresh = re.findall(soapattern, serial)[0] else: refresh = 0 - return refresh + return int(refresh) @classmethod def get_zone_retry_time(cls):