Skip to content

Commit

Permalink
Update class that we're calling super to
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Gonzalez committed Sep 17, 2015
1 parent 5176149 commit 3d40580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, assets_file=None, *args, **kwargs):
self.check_assets()
self.load_json()
self.location = 'static'
super(WebpackDevServerStorage, self).__init__(*args, **kwargs)
super(WebpackS3Storage, self).__init__(*args, **kwargs)

def check_assets(self):
"""
Expand Down Expand Up @@ -116,4 +116,4 @@ def url(self, name):
if self.assets.has_key(raw_name) and self.assets.get(raw_name).has_key(suffix):
name = self.assets.get(raw_name).get(suffix)

return super(WebpackDevServerStorage, self).url(name)
return super(WebpackS3Storage, self).url(name)

0 comments on commit 3d40580

Please sign in to comment.