src/allmydata/__init__.py: head off a possible warning on platforms where twisted-conch is a separate package.

This commit is contained in:
david-sarah 2011-08-08 18:20:13 +00:00
parent 2ed6b67644
commit 37ee8f79d5
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ def cross_check(pkg_resources_vers_and_locs, imported_vers_and_locs_list):
errors = [] errors = []
not_pkg_resourceable = set(['python', 'platform', __appname__.lower()]) not_pkg_resourceable = set(['python', 'platform', __appname__.lower()])
not_import_versionable = set(['zope.interface', 'mock', 'pyasn1']) not_import_versionable = set(['zope.interface', 'mock', 'pyasn1'])
ignorable = set(['argparse', 'pyutil', 'zbase32', 'distribute', 'twisted-web', 'twisted-core']) ignorable = set(['argparse', 'pyutil', 'zbase32', 'distribute', 'twisted-web', 'twisted-core', 'twisted-conch'])
for name, (imp_ver, imp_loc, imp_comment) in imported_vers_and_locs_list: for name, (imp_ver, imp_loc, imp_comment) in imported_vers_and_locs_list:
name = name.lower() name = name.lower()