[Zope3-checkins]
SVN: Zope3/trunk/src/zope/dependencytool/finddeps.py
Fixed typo in error message.
Jim Fulton
jim at zope.com
Tue Jul 12 15:30:58 EDT 2005
Log message for revision 31021:
Fixed typo in error message.
Changed:
U Zope3/trunk/src/zope/dependencytool/finddeps.py
-=-
Modified: Zope3/trunk/src/zope/dependencytool/finddeps.py
===================================================================
--- Zope3/trunk/src/zope/dependencytool/finddeps.py 2005-07-06 16:07:43 UTC (rev 31020)
+++ Zope3/trunk/src/zope/dependencytool/finddeps.py 2005-07-07 19:49:42 UTC (rev 31021)
@@ -315,7 +315,7 @@
module = sys.modules[arg]
options.path = os.path.dirname(module.__file__)
except ImportError:
- usage(1, "Could not import module %s" % module)
+ usage(1, "Could not import module %s" % arg)
elif opt in ('-p', '--packages'):
options.packages = True
elif opt in ('-z', '--zcml'):
More information about the Zope3-Checkins
mailing list