diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-19 16:31:23 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-04-19 16:31:23 -0500 |
commit | 97e0a79f394c00d6837a97ad7f55cb4c36a8d930 (patch) | |
tree | 9a63916983eb29eafae02b11d65db35e73b046b2 | |
parent | 51d5d3aa20b5f2d7dbe9c88e7d8c21db7ea172d1 (diff) | |
download | mediagoblin-97e0a79f394c00d6837a97ad7f55cb4c36a8d930.tar.lz mediagoblin-97e0a79f394c00d6837a97ad7f55cb4c36a8d930.tar.xz mediagoblin-97e0a79f394c00d6837a97ad7f55cb4c36a8d930.zip |
Let's not use reserved keywords :)
-rw-r--r-- | mediagoblin/tests/testplugins/callables1/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/tests/testplugins/callables1/__init__.py b/mediagoblin/tests/testplugins/callables1/__init__.py index 260a2078..fe801a01 100644 --- a/mediagoblin/tests/testplugins/callables1/__init__.py +++ b/mediagoblin/tests/testplugins/callables1/__init__.py @@ -31,8 +31,8 @@ def multi_handle_with_canthandle(call_log): return None -def expand_tuple(tuple): - return tuple + (1,) +def expand_tuple(this_tuple): + return this_tuple + (1,) hooks = { 'setup': setup_plugin, |