Skip to content

Commit

Permalink
Added missing slash
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Coelho <[email protected]>
  • Loading branch information
chocoelho committed Oct 26, 2017
1 parent 8fc7a1c commit e05b4f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tapioca_mailgun/tapioca_mailgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@


class MailgunClientAdapter(JSONAdapterMixin, TapiocaAdapter):
api_root = 'https://api.mailgun.net/v3'
api_root = 'https://api.mailgun.net/v3/'
resource_mapping = RESOURCE_MAPPING

def get_request_kwargs(self, api_params, *args, **kwargs):
params = super(MailgunClientAdapter, self).get_request_kwargs(
api_params, *args, **kwargs)


params['auth'] = HTTPBasicAuth(
api_params.get('user'), api_params.get('password'))


return params

Expand Down

0 comments on commit e05b4f9

Please sign in to comment.