Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
1. fixed UnicodeDecodeError for unicode routes
Browse files Browse the repository at this point in the history
2. bumped version to 0.5.6
  • Loading branch information
mostafa committed Apr 25, 2018
1 parent 6fe75a4 commit 3ea658c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion grest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

from .grest import GRest

__version__ = '0.5.5'
__version__ = '0.5.6'
5 changes: 5 additions & 0 deletions grest/grest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
#

from __future__ import unicode_literals
import sys
import imp

imp.reload(sys)
sys.setdefaultencoding("utf-8")

try:
# For Python 3.0 and later
Expand Down

0 comments on commit 3ea658c

Please sign in to comment.