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/11 02:28:59 UTC

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

Author: stroucki
Date: Wed Jul 11 02:28:58 2012
New Revision: 1359992

URL: http://svn.apache.org/viewvc?rev=1359992&view=rev
Log:
Merge branch 'unknownfailure'

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=1359992&r1=1359991&r2=1359992&view=diff
==============================================================================
--- incubator/tashi/trunk/src/tashi/client/tashi-client.py (original)
+++ incubator/tashi/trunk/src/tashi/client/tashi-client.py Wed Jul 11 02:28:58 2012
@@ -647,7 +647,7 @@ def main():
 			res = f(*fargs)
 
 		except TashiException, e:
-			print "Failed in calling %s: %s" (function, e.msg)
+			print "Failed in calling %s: %s" % (function, e.msg)
 			sys.exit(-1)
 
 		except Exception, e: