Let's not use reserved keywords :)
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 19 Apr 2013 21:31:23 +0000 (16:31 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 19 Apr 2013 21:31:23 +0000 (16:31 -0500)
mediagoblin/tests/testplugins/callables1/__init__.py

index 260a20782f3b1075bc34d08f4c0e52e0660fecb5..fe801a018a2bd02cf008aa0fb4061bcd53dc2405 100644 (file)
@@ -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,