From: Zooko O'Whielacronx Date: Fri, 14 Sep 2007 02:14:46 +0000 (-0700) Subject: don't try to use bindann X-Git-Tag: allmydata-tahoe-0.6.0~126 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=8fd98624a3f1869646f9534bf9838fc012d5f461;p=tahoe-lafs%2Ftahoe-lafs.git don't try to use bindann It causes a mysterious misbehavior in Python import which causes the previous patch to fail (the patch to not run trial tests if dependencies can't be imported) --- diff --git a/src/allmydata/util/version_class.py b/src/allmydata/util/version_class.py index 8654e1f8..154d62b8 100644 --- a/src/allmydata/util/version_class.py +++ b/src/allmydata/util/version_class.py @@ -20,13 +20,6 @@ else: def cmp_version(v1, v2): return cmp(pkg_resources.parse_version(str(v1)), pkg_resources.parse_version(str(v2))) -# bindann, by Nathan Wilcox (needed only for debugging) -try: - import bindann - bindann.install_exception_handler() -except ImportError: - pass - # Python Standard Library import re