diff options
author | Rob Austein <sra@hactrn.net> | 2012-10-18 23:53:23 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-10-18 23:53:23 +0000 |
commit | c4be735c645bdbcb86b2448899a3aa664d5e97df (patch) | |
tree | ebaa086e7376be3a512eab0fccce05494ef602a5 /rpkid/rpki/rootd.py | |
parent | 5897dfa4261927dafabc3ed6c16f27aa932efc42 (diff) |
pylint
svn path=/branches/tk274/; revision=4786
Diffstat (limited to 'rpkid/rpki/rootd.py')
-rw-r--r-- | rpkid/rpki/rootd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpki/rootd.py b/rpkid/rpki/rootd.py index ce4afd86..6da7081b 100644 --- a/rpkid/rpki/rootd.py +++ b/rpkid/rpki/rootd.py @@ -10,7 +10,7 @@ Usage: python rootd.py [ { -c | --config } configfile ] $Id$ -Copyright (C) 2009--2011 Internet Systems Consortium ("ISC") +Copyright (C) 2009--2012 Internet Systems Consortium ("ISC") Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -299,7 +299,7 @@ class main(object): try: crl = rpki.x509.CRL(DER_file = os.path.join(self.rpki_root_dir, self.rpki_root_crl)) self.crl_number = crl.getCRLNumber() - except: + except: # pylint: disable=W0702 self.crl_number = 0 self.crl_number += 1 return self.crl_number |