Revision: 2849
Author: KariHusa
Date: Wed Apr 7 03:32:58 2010
Log: Fixes build
http://code.google.com/p/robotframework/source/detail?r=2849
Modified:
/trunk/src/robot/running/userkeyword.py
=======================================
--- /trunk/src/robot/running/userkeyword.py Wed Apr 7 02:16:21 2010
+++ /trunk/src/robot/running/userkeyword.py Wed Apr 7 03:32:58 2010
@@ -172,7 +172,7 @@
class UserKeywordArguments(object):
def __init__(self, argnames, defaults, vararg):
- self._names = argnames
+ self._names = list(argnames) # Python 2.5 does not support
indexing tuples
self._defaults = defaults
self._vararg = vararg
--
To unsubscribe, reply using "remove me" as the subject.