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
def expand_tuple(tuple):
return tuple + (1,)
def expand_tuple(this_tuple):
return this_tuple + (1,)
hooks = {
'setup': setup_plugin,