[Python-checkins] distutils2: temporary fix the test running

tarek.ziade python-checkins at python.org
Sun Jan 23 15:48:23 CET 2011


tarek.ziade pushed 7fde97d26daf to distutils2:

http://hg.python.org/distutils2/rev/7fde97d26daf
changeset:   857:7fde97d26daf
parent:      843:67baf93187d1
user:        Mathieu Leduc-Hamel <mathieu at lesite.ca>
date:        Wed Dec 08 19:12:59 2010 -0500
summary:
  temporary fix the test running

files:
  distutils2/run.py

diff --git a/distutils2/run.py b/distutils2/run.py
--- a/distutils2/run.py
+++ b/distutils2/run.py
@@ -123,13 +123,13 @@
     options, args = parser.parse_args()
     if options.version:
         print('Distutils2 %s' % __version__)
-        sys.exit(0)
+#        sys.exit(0)
 
     if len(args) == 0:
         parser.print_help()
 
     commands_main()
-    sys.exit(0)
+#    sys.exit(0)
 
 if __name__ == '__main__':
     main()

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list