src/allmydata/__init__.py: head off a possible warning on platforms where twisted-conch is a separate package.
This commit is contained in:
parent
2ed6b67644
commit
37ee8f79d5
|
@ -271,7 +271,7 @@ def cross_check(pkg_resources_vers_and_locs, imported_vers_and_locs_list):
|
|||
errors = []
|
||||
not_pkg_resourceable = set(['python', 'platform', __appname__.lower()])
|
||||
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:
|
||||
name = name.lower()
|
||||
|
|
Loading…
Reference in New Issue