From a85a462a7a5764137b750167671ed93a3d25207b Mon Sep 17 00:00:00 2001 From: david-sarah Date: Sun, 31 Jul 2011 17:52:09 -0700 Subject: [PATCH] src/allmydata/__init__.py: suppress a spurious warning from 'bin/tahoe --version[-and-path]' about twisted-web and twisted-core packages. --- src/allmydata/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/__init__.py b/src/allmydata/__init__.py index c404276c..439fb925 100644 --- a/src/allmydata/__init__.py +++ b/src/allmydata/__init__.py @@ -270,7 +270,7 @@ def cross_check(pkg_resources_vers_and_locs, imported_vers_and_locs_list): errors = [] not_pkg_resourceable = set(['sqlite3', 'python', 'platform', __appname__.lower()]) not_import_versionable = set(['zope.interface', 'mock', 'pyasn1']) - ignorable = set(['argparse', 'pyutil', 'zbase32', 'distribute']) + ignorable = set(['argparse', 'pyutil', 'zbase32', 'distribute', 'twisted-web', 'twisted-core']) for name, (imp_ver, imp_loc, imp_comment) in imported_vers_and_locs_list: name = name.lower() -- 2.37.2