more debug

This commit is contained in:
jane 2020-11-10 19:28:48 -05:00
parent c0beac0132
commit b9182c3bb4
1 changed files with 2 additions and 2 deletions

View File

@ -71,10 +71,10 @@ def jez(target, arg, index):
def _apply(index, target, arg, func):
if type(arg) is int:
print("{} {} {}".format(func, target, arg))
print("{} {} {} {}".format(index, func.__name__, target, arg))
return func(target, arg, index)
elif type(arg) is str and arg in this.values:
print("{} {} {}".format(func, target, this.values[arg]))
print("{} {} {} {}".format(index, func.__name__, target, this.values[arg]))
return func(target, this.values[arg], index)