]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
don't try to use bindann
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 14 Sep 2007 02:14:46 +0000 (19:14 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 14 Sep 2007 02:14:46 +0000 (19:14 -0700)
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)

src/allmydata/util/version_class.py

index 8654e1f847652a67f63ed69cb94583d7bf026eef..154d62b88f50afbdbc376a786fe9f6c1fc664cd1 100644 (file)
@@ -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