Revision: 3002
Author: jprantan
Date: Thu Apr 15 06:26:25 2010
Log: Fixed to work with return values containing tuple.
http://code.google.com/p/robotframework/source/detail?r=3002
Modified:
/trunk/src/robot/running/keywords.py
=======================================
--- /trunk/src/robot/running/keywords.py Thu Apr 15 05:30:46 2010
+++ /trunk/src/robot/running/keywords.py Thu Apr 15 06:26:25 2010
@@ -50,7 +50,7 @@
output.warn("Keyword '%s' is deprecated. %s" % (name, msg))
try:
ret = self._run(handler, output, namespace)
- output.trace('Return: %r' % ret)
+ output.trace('Return: %s' % repr(ret))
except ExecutionFailed, err:
self.status = 'FAIL'
else:
--
To unsubscribe, reply using "remove me" as the subject.