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: if prev and not prev.exclude:
# Previously exported. # Previously exported.
pass pass
else: elif mdef.moduleName in self.mf.modules or \
if mdef.moduleName in self.mf.modules or \
mdef.moduleName in startupModules or \ mdef.moduleName in startupModules or \
mdef.filename: mdef.filename:
moduleDefs.append((newName, mdef)) moduleDefs.append((newName, mdef))
elif not mdef.guess:
print "Unknown module %s" % (mdef.moduleName)
elif mdef.forbid: elif mdef.forbid:
if not prev or not prev.forbid: if not prev or not prev.forbid:
moduleDefs.append((newName, mdef)) moduleDefs.append((newName, mdef))