Fix **kwargs

This commit is contained in:
Rebecca Law
2016-04-07 10:53:59 +01:00
parent b4473a2825
commit fb04b36cba

View File

@@ -39,7 +39,7 @@ class MMGClient(SmsClient):
''' '''
def init_app(self, config, *args, **kwargs): def init_app(self, config, *args, **kwargs):
super(SmsClient, self).__init__(*args, *kwargs) super(SmsClient, self).__init__(*args, **kwargs)
self.api_key = config.get('MMG_API_KEY') self.api_key = config.get('MMG_API_KEY')
self.from_number = config.get('MMG_FROM_NUMBER') self.from_number = config.get('MMG_FROM_NUMBER')
self.name = 'MMG' self.name = 'MMG'