]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
setup: don't use BaseException (introduced in Python 2.5); instead Exception (for...
authorzooko <zooko@zooko.com>
Mon, 15 Jun 2009 19:09:04 +0000 (00:39 +0530)
committerzooko <zooko@zooko.com>
Mon, 15 Jun 2009 19:09:04 +0000 (00:39 +0530)
Ignore-this: 76033016d61c5a69a06ba9cb37ea148

darcs-hash:944fb235a08050d7d5413c0433ced804ddf26d3e

zfec/setup.py

index 3936694b8960376b8358154cb6ecd48f8b547951..5e3b1598ec57136bf2f685e6e17400d52589ed00 100755 (executable)
@@ -157,7 +157,7 @@ def _setup(test_suite):
 test_suite_name=PKG+".test"
 try:
     _setup(test_suite=test_suite_name)
-except BaseException, le:
+except Exception, le:
     # to work around a bug in Elisa v0.3.5
     # https://bugs.launchpad.net/elisa/+bug/263697
     if "test_suite must be a list" in str(le):