projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6acbffb
)
don't try to use bindann
author
Zooko O'Whielacronx
<zooko@zooko.com>
Fri, 14 Sep 2007 02:14:46 +0000
(19:14 -0700)
committer
Zooko 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
patch
|
blob
|
history
diff --git
a/src/allmydata/util/version_class.py
b/src/allmydata/util/version_class.py
index 8654e1f847652a67f63ed69cb94583d7bf026eef..154d62b88f50afbdbc376a786fe9f6c1fc664cd1 100644
(file)
--- 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