except named exception handling

This commit is contained in:
NeroBurner 2015-09-17 13:25:08 +02:00 committed by Daniel Martí
parent af38f151a2
commit 5ca182a20d
6 changed files with 10 additions and 10 deletions

View file

@ -89,7 +89,7 @@ def main():
logging.info("...successfully verified")
verified += 1
except FDroidException, e:
except FDroidException as e:
logging.info("...NOT verified - {0}".format(e))
notverified += 1