aboutsummaryrefslogtreecommitdiffstats
path: root/mako/ast.py
diff options
context:
space:
mode:
Diffstat (limited to 'mako/ast.py')
-rw-r--r--mako/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mako/ast.py b/mako/ast.py
index 3713cc3..8f711b4 100644
--- a/mako/ast.py
+++ b/mako/ast.py
@@ -169,7 +169,7 @@ class FunctionDecl(object):
@property
def allargnames(self):
- return self.argnames + self.kwargnames
+ return tuple(self.argnames) + tuple(self.kwargnames)
class FunctionArgs(FunctionDecl):
"""the argument portion of a function declaration"""