Let's not use reserved keywords :)

This commit is contained in:
Christopher Allan Webber 2013-04-19 16:31:23 -05:00
parent 51d5d3aa20
commit 97e0a79f39

View File

@ -31,8 +31,8 @@ def multi_handle_with_canthandle(call_log):
return None return None
def expand_tuple(tuple): def expand_tuple(this_tuple):
return tuple + (1,) return this_tuple + (1,)
hooks = { hooks = {
'setup': setup_plugin, 'setup': setup_plugin,