From: Christopher Allan Webber Date: Fri, 19 Apr 2013 21:31:23 +0000 (-0500) Subject: Let's not use reserved keywords :) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=97e0a79f394c00d6837a97ad7f55cb4c36a8d930;p=mediagoblin.git Let's not use reserved keywords :) --- 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,