Skip to content

Commit

Permalink
Merge pull request #38 from mik3y/mik3y/fix-bug
Browse files Browse the repository at this point in the history
Fix Python 3 issue; bump to v1.4.1
  • Loading branch information
RealOrangeOne authored Jan 9, 2020
2 parents 31ed04b + a1d29f9 commit ad6e71c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion log_request_id/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import threading


__version__ = "1.4.0"
__version__ = "1.4.1"


local = threading.local()
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import re
import os
import sys
import codecs



Expand All @@ -19,7 +20,7 @@
license = 'BSD'
install_requires = ["django>=1.8"]

with open('README.md') as f:
with codecs.open('README.md', encoding='utf-8') as f:
readme = f.read()


Expand Down

0 comments on commit ad6e71c

Please sign in to comment.