[Python-checkins] r83693 - sandbox/trunk/release/release.py

barry.warsaw python-checkins at python.org
Wed Aug 4 01:23:28 CEST 2010


Author: barry.warsaw
Date: Wed Aug  4 01:23:27 2010
New Revision: 83693

Log:
Fix typo.


Modified:
   sandbox/trunk/release/release.py

Modified: sandbox/trunk/release/release.py
==============================================================================
--- sandbox/trunk/release/release.py	(original)
+++ sandbox/trunk/release/release.py	Wed Aug  4 01:23:27 2010
@@ -39,7 +39,7 @@
         print('Executing %s' % cmd)
     try:
         if silent:
-            code = subprocess.call(cmd, shell=True, stdout=PIPE)
+            code = subprocess.call(cmd, shell=True, stdout=subprocess.PIPE)
         else:
             code = subprocess.call(cmd, shell=True)
     except OSError:


More information about the Python-checkins mailing list