Remove redundant warning message

This commit is contained in:
rdb 2010-10-26 18:40:42 +00:00
parent e69958cfe9
commit 6b861d66bc

View File

@ -978,13 +978,10 @@ class Freezer:
if prev and not prev.exclude:
# Previously exported.
pass
else:
if mdef.moduleName in self.mf.modules or \
elif mdef.moduleName in self.mf.modules or \
mdef.moduleName in startupModules or \
mdef.filename:
moduleDefs.append((newName, mdef))
elif not mdef.guess:
print "Unknown module %s" % (mdef.moduleName)
elif mdef.forbid:
if not prev or not prev.forbid:
moduleDefs.append((newName, mdef))