[Zope3-checkins]
SVN: Zope3/trunk/src/zope/dependencytool/finddeps.py
Added the missing call to main() when finddeps.py is called
as a standalone
Marius Gedminas
marius at pov.lt
Thu Jun 10 05:29:33 EDT 2004
Log message for revision 25325:
Added the missing call to main() when finddeps.py is called as a standalone
script.
-=-
Modified: Zope3/trunk/src/zope/dependencytool/finddeps.py
===================================================================
--- Zope3/trunk/src/zope/dependencytool/finddeps.py 2004-06-10 08:10:47 UTC (rev 25324)
+++ Zope3/trunk/src/zope/dependencytool/finddeps.py 2004-06-10 09:29:32 UTC (rev 25325)
@@ -337,3 +337,7 @@
raise
except KeyboardInterrupt:
sys.exit(1)
+
+if __name__ == '__main__':
+ main()
+
More information about the Zope3-Checkins
mailing list