From: david-sarah <david-sarah@jacaranda.org>
Date: Mon, 17 Jan 2011 05:20:42 +0000 (-0800)
Subject: Undo the temporary hack to check the foolscap version. refs #1246
X-Git-Url: https://git.rkrishnan.org/pf/content/%22news.html/frontends/running.html?a=commitdiff_plain;h=e52d97a917364cb07024fb14712299159ab8ac6b;p=tahoe-lafs%2Ftahoe-lafs.git

Undo the temporary hack to check the foolscap version. refs #1246
---

diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py
index fd13bab7..ba450f9b 100644
--- a/src/allmydata/_auto_deps.py
+++ b/src/allmydata/_auto_deps.py
@@ -107,12 +107,6 @@ def require_auto_deps():
     require_python_version()
 
     import pkg_resources
-    import foolscap.api
-    if foolscap.api.__version__ != '0.6.0':
-        import os, sys
-        raise AssertionError("wrong foolscap!\nfoolscap.api.__version__=%r\nPYTHONPATH=%r\nsys.path=%r" %
-                             (foolscap.api.__version__, os.environ.get('PYTHONPATH'), sys.path))
-
     for requirement in install_requires:
         try:
             pkg_resources.require(requirement)