Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #7 from alex/patch-1
Browse files Browse the repository at this point in the history
Fixed a typo
  • Loading branch information
BradWhittington committed Aug 16, 2013
2 parents e0be996 + 4063706 commit 172645c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_mailgun/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, fail_silently=False, *args, **kwargs):
self._server_name = server_name or getattr(settings, 'MAILGUN_SERVER_NAME')
except AttributeError:
if fail_silently:
self._access_key, self._server_name = None
self._access_key, self._server_name = None, None
else:
raise

Expand Down

0 comments on commit 172645c

Please sign in to comment.