0

changed bare exceptions to except Exception

This commit is contained in:
Andrew Brown
2011-10-26 22:36:23 -04:00
parent b31160e3ad
commit f5ae4b3451
4 changed files with 8 additions and 8 deletions

View File

@@ -139,7 +139,7 @@ def main():
print "Git commit: %s" % overviewer_version.HASH
print "built on %s" % overviewer_version.BUILD_DATE
print "Build machine: %s %s" % (overviewer_version.BUILD_PLATFORM, overviewer_version.BUILD_OS)
except:
except Exception:
print "version info not found"
pass
sys.exit(0)