Revision: 3642
Author: janne.t.harkonen
Date: Fri May 28 05:18:31 2010
Log: arguments need to be a list
http://code.google.com/p/robotframework/source/detail?r=3642
Modified:
/trunk/src/robot/libraries/BuiltIn.py
=======================================
--- /trunk/src/robot/libraries/BuiltIn.py Fri May 28 04:42:43 2010
+++ /trunk/src/robot/libraries/BuiltIn.py Fri May 28 05:18:31 2010
@@ -752,7 +752,7 @@
"""
if not isinstance(name, basestring):
raise DataError('Keyword name must be a string')
- kw = Keyword(name, args)
+ kw = Keyword(name, list(args))
from robot.running.model import ExecutionContext
return kw.run(ExecutionContext(NAMESPACES.current, output.OUTPUT))