]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Move require_more() to top-level.
authorDaira Hopwood <daira@jacaranda.org>
Tue, 7 Oct 2014 18:06:14 +0000 (19:06 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 7 Oct 2014 18:06:14 +0000 (19:06 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/_auto_deps.py

index 6365119ed204de7940786d32ad4d7eee2f82ddf5..55274d41cf559d79df7700a673f3f167d29f7fd1 100644 (file)
@@ -110,17 +110,15 @@ ignorable = [
     'twisted-conch',
 ]
 
-def require_more():
-    import sys
+import sys
 
-    # Don't try to get the version number of setuptools in frozen builds, because
-    # that triggers 'site' processing that causes failures. Note that frozen
-    # builds still (unfortunately) import pkg_resources in .tac files, so the
-    # entry for setuptools in install_requires above isn't conditional.
-    if not hasattr(sys, 'frozen'):
-        package_imports.append(('setuptools', 'setuptools'))
+# Don't try to get the version number of setuptools in frozen builds, because
+# that triggers 'site' processing that causes failures. Note that frozen
+# builds still (unfortunately) import pkg_resources in .tac files, so the
+# entry for setuptools in install_requires above isn't conditional.
+if not hasattr(sys, 'frozen'):
+    package_imports.append(('setuptools', 'setuptools'))
 
-require_more()
 
 
 # These are suppressed globally: