Skip to content

Commit

Permalink
Make TestBackend compatible with Python 2 (Closes: #72)
Browse files Browse the repository at this point in the history
  • Loading branch information
inglesp authored and lamby committed Sep 1, 2017
1 parent 3734338 commit 4d1e3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_slack/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class TestBackend(Backend):
"""

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
super(TestBackend, self).__init__(*args, **kwargs)
self.reset_messages()

def send(self, url, message_data, **kwargs):
Expand Down

0 comments on commit 4d1e3e5

Please sign in to comment.