Skip to content

Commit 00d7415

Browse files
authored
Merge pull request yasoob#133 from lancelote/master
Fixes yasoob#132, typo in the super() call
2 parents 4bdcff5 + 9627cf0 commit 00d7415

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

decorators.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ will not be covered here).
429429
'''
430430
def __init__(self, email='admin@myproject.com', *args, **kwargs):
431431
self.email = email
432-
super(logit, self).__init__(*args, **kwargs)
432+
super(email_logit, self).__init__(*args, **kwargs)
433433
434434
def notify(self):
435435
# Send an email to self.email

0 commit comments

Comments
 (0)