[Zope3-checkins] CVS: Zope3/utilities - finddeps.py:1.19

Fred L. Drake, Jr. fred at zope.com
Mon May 10 13:03:26 EDT 2004


Update of /cvs-repository/Zope3/utilities
In directory cvs.zope.org:/tmp/cvs-serv1546

Modified Files:
	finddeps.py 
Log Message:
- fix typo in help text
- only print the huge banner when -l/--long is given


=== Zope3/utilities/finddeps.py 1.18 => 1.19 ===
--- Zope3/utilities/finddeps.py:1.18	Wed Apr  7 15:41:05 2004
+++ Zope3/utilities/finddeps.py	Mon May 10 13:03:25 2004
@@ -19,7 +19,7 @@
 
 Usage: finddeps.py [options]
 Options:
-    -a / --a
+    -a / --all
         Find all dependencies. This means that the program will also scan the
         dependencies originally found in the module.
 
@@ -463,9 +463,10 @@
     else:
         deps = getCleanedDependencies(path, zcml)
 
-    print '='*(8+len(path))
-    print "Module: " + path
-    print '='*(8+len(path))
+    if long:
+        print '='*(8+len(path))
+        print "Module: " + path
+        print '='*(8+len(path))
     for dep in deps:
         print dep.path
         if long:




More information about the Zope3-Checkins mailing list