[Checkins] SVN: zc.buildout/branches/python-3-2/src/zc/buildout/tests.py fixed string substitution syntax broken by a recent print() fix

Thomas Lotze tl at gocept.com
Thu Apr 7 09:28:46 EDT 2011


Log message for revision 121330:
  fixed string substitution syntax broken by a recent print() fix

Changed:
  U   zc.buildout/branches/python-3-2/src/zc/buildout/tests.py

-=-
Modified: zc.buildout/branches/python-3-2/src/zc/buildout/tests.py
===================================================================
--- zc.buildout/branches/python-3-2/src/zc/buildout/tests.py	2011-04-07 13:10:20 UTC (rev 121329)
+++ zc.buildout/branches/python-3-2/src/zc/buildout/tests.py	2011-04-07 13:28:46 UTC (rev 121330)
@@ -3815,7 +3815,7 @@
 from distutils.core import setup, Extension
 
 if os.environ.get('test-variable'):
-    print("Have environment test-variable: %s" % os.environ['test-variable'])
+    print("Have environment test-variable: %%s" %% os.environ['test-variable'])
 
 setup(name = "extdemo", version = "%s", url="http://www.zope.org",
       author="Demo", author_email="demo at demo.com",



More information about the checkins mailing list