[Checkins] SVN: zc.buildout/branches/python-3-2/src/zc/buildout/update.txt fixed remaining call to subprocess.check_call

Thomas Lotze tl at gocept.com
Thu Apr 7 08:26:04 EDT 2011


Log message for revision 121328:
  fixed remaining call to subprocess.check_call

Changed:
  U   zc.buildout/branches/python-3-2/src/zc/buildout/update.txt

-=-
Modified: zc.buildout/branches/python-3-2/src/zc/buildout/update.txt
===================================================================
--- zc.buildout/branches/python-3-2/src/zc/buildout/update.txt	2011-04-07 12:24:03 UTC (rev 121327)
+++ zc.buildout/branches/python-3-2/src/zc/buildout/update.txt	2011-04-07 12:26:04 UTC (rev 121328)
@@ -288,7 +288,5 @@
     ... eggs = broken
     ... """ % dict(new_releases=new_releases))
     >>> import subprocess
-    >>> subprocess.check_call([buildout])
-    Traceback (most recent call last):
-        ...
-    CalledProcessError: Command '['/sample-buildout/bin/buildout']' returned non-zero exit status 1
+    >>> subprocess.call([buildout])
+    1



More information about the checkins mailing list