Skip to content
Snippets Groups Projects
Commit 66b121b2 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix wrong number of arguments

parent 8d34120a
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ class PusherFactory(object): ...@@ -57,7 +57,7 @@ class PusherFactory(object):
logger.info("found pusher") logger.info("found pusher")
return self.pusher_types[pusherdict['kind']](self.hs, pusherdict) return self.pusher_types[pusherdict['kind']](self.hs, pusherdict)
def _create_email_pusher(self, pusherdict): def _create_email_pusher(self, _hs, pusherdict):
app_name = self._brand_from_pusherdict app_name = self._brand_from_pusherdict
mailer = self.mailers.get(app_name) mailer = self.mailers.get(app_name)
if not mailer: if not mailer:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment