gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [ascension] branch master updated: fixed false refresh and


From: gnunet
Subject: [GNUnet-SVN] [ascension] branch master updated: fixed false refresh and retry datatypes
Date: Sat, 04 May 2019 14:47:36 +0200

This is an automated email from the git hooks/post-receive script.

rexxnor pushed a commit to branch master
in repository ascension.

The following commit(s) were added to refs/heads/master by this push:
     new 7bcf787  fixed false refresh and retry datatypes
7bcf787 is described below

commit 7bcf78798d798020d8b0a6ed8770e78024ec6e2e
Author: rexxnor <address@hidden>
AuthorDate: Fri May 3 10:22:56 2019 +0200

    fixed false refresh and retry datatypes
---
 ascension/ascension.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ascension/ascension.py b/ascension/ascension.py
index 4786470..5cc3f85 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -719,8 +719,8 @@ def main():
             ascender.zone = dns.zone.from_xfr(ascender.zonegenerator,
                                               check_origin=False)
             ascender.soa = ascender.get_zone_soa(ascender.zone)
-            refresh = str(ascender.soa[2]).split(" ")[4]
-            retry = str(ascender.soa[2]).split(" ")[5]
+            refresh = int(ascender.soa[2]).split(" ")[4]
+            retry = int(ascender.soa[2]).split(" ")[5]
         except dns.zone.BadZone:
             logging.critical("Malformed DNS Zone '%s'", ascender.domain)
             if standalone:

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]