Skip to content

Commit

Permalink
Fix double prefix on result storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Bladrak committed Sep 23, 2015
1 parent 7499028 commit 7ff5eea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='tc_aws',
version="1.3.0",
version='1.3.1',
description='Thumbor AWS extensions',
author='Thumbor-Community & William King',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tc_aws/result_storages/s3_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ def put(self, bytes):

def get(self, path=None):
if path is None:
path = self.normalize_path(self.context.request.url)
path = self.context.request.url

return super(Storage, self).get(path)

0 comments on commit 7ff5eea

Please sign in to comment.