[jboss-cvs] JBossAS SVN: r109563 - branches/JBPAPP_5_1_datagrid/testsuite/src/resources/python.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Nov 30 14:00:53 EST 2010
Author: mlinhard
Date: 2010-11-30 14:00:52 -0500 (Tue, 30 Nov 2010)
New Revision: 109563
Modified:
branches/JBPAPP_5_1_datagrid/testsuite/src/resources/python/memcached_testsuite.py
Log:
removed "".format() construct which is not supported by older python versions
Modified: branches/JBPAPP_5_1_datagrid/testsuite/src/resources/python/memcached_testsuite.py
===================================================================
--- branches/JBPAPP_5_1_datagrid/testsuite/src/resources/python/memcached_testsuite.py 2010-11-30 18:45:52 UTC (rev 109562)
+++ branches/JBPAPP_5_1_datagrid/testsuite/src/resources/python/memcached_testsuite.py 2010-11-30 19:00:52 UTC (rev 109563)
@@ -16,7 +16,7 @@
ipaddress = sys.argv[1] + ':' + sys.argv[2]
mc = memcache.Client([ipaddress], debug=1)
-print "Connecting to {0}".format(ipaddress)
+print "Connecting to " + ipaddress
print "Testing command get,set ",
More information about the jboss-cvs-commits
mailing list