You are viewing a plain text version of this content. The canonical link for it is here.
Posted to tashi-commits@incubator.apache.org by st...@apache.org on 2012/07/19 00:09:54 UTC

svn commit: r1363187 - /incubator/tashi/trunk/src/tashi/client/tashi-client.py

Author: stroucki
Date: Thu Jul 19 00:09:54 2012
New Revision: 1363187

URL: http://svn.apache.org/viewvc?rev=1363187&view=rev
Log:
tashi-client: forgot comma

Modified:
    incubator/tashi/trunk/src/tashi/client/tashi-client.py

Modified: incubator/tashi/trunk/src/tashi/client/tashi-client.py
URL: http://svn.apache.org/viewvc/incubator/tashi/trunk/src/tashi/client/tashi-client.py?rev=1363187&r1=1363186&r2=1363187&view=diff
==============================================================================
--- incubator/tashi/trunk/src/tashi/client/tashi-client.py (original)
+++ incubator/tashi/trunk/src/tashi/client/tashi-client.py Thu Jul 19 00:09:54 2012
@@ -201,7 +201,7 @@ def getSlots(cores, memory):
 		countbymemory = int((h.memory - h.usedMemory) / memory)
 		count += max(0, min(countbycores, countbymemory))
 
-	print "%d" % (count), "available"
+	print "%d" % (count), "available",
 	print ("slots", "slot")[count == 1],
 	print "for instances with %d" % (cores),
 	print ("cores", "core")[cores == 1],