Skip to content

Commit ffe553c

Browse files
committed
Fix bug when creating temporary URLs
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
1 parent 138b7b7 commit ffe553c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='django-swiftbrowser',
11-
version='0.21',
11+
version='0.22',
1212
packages=['swiftbrowser'],
1313
include_package_data=True,
1414
license='Apache License (2.0)',

0 commit comments

Comments
 (0)