From 97e0a79f394c00d6837a97ad7f55cb4c36a8d930 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 19 Apr 2013 16:31:23 -0500 Subject: [PATCH] Let's not use reserved keywords :) --- mediagoblin/tests/testplugins/callables1/__init__.py | 4 ++-- 1 file 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, -- 2.25.1