Skip to content

Commit

Permalink
docs: missing parens in log example (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly authored Nov 13, 2023
1 parent 3e7b298 commit 12508ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Create decorators easily:
@decorator
def log(call):
print call._func.__name__, call._args
print(call._func.__name__, call._args)
return call()
Expand Down

0 comments on commit 12508ae

Please sign in to comment.