Skip to content
This repository has been archived by the owner on Sep 17, 2019. It is now read-only.

fix storage url method #105

Merged
merged 1 commit into from
Oct 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mailqueue/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def __init__(self, location=None):
location = settings.MAILQUEUE_ROOT
FileSystemStorage.__init__(self, location=location)

def url(self):
def url(self, **kwargs):
return ''


Expand Down