Skip to content

Commit

Permalink
Fix bug when creating temporary URLs
Browse files Browse the repository at this point in the history
Pythons HMAC does not accept unicode, therefore converting key and hmac body to
string (to be compatible with Python 2.x). Python 3 needs a byte conversion.

See also: http://bugs.python.org/issue5285
  • Loading branch information
cschwede committed Feb 3, 2016
1 parent 138b7b7 commit ffe553c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='django-swiftbrowser',
version='0.21',
version='0.22',
packages=['swiftbrowser'],
include_package_data=True,
license='Apache License (2.0)',
Expand Down

0 comments on commit ffe553c

Please sign in to comment.