summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2013-04-13 18:39:45 +0200
committerStefan Kögl <stefan@skoegl.net>2013-04-13 18:39:45 +0200
commitce5c9fd499886e293050a5de8901558073a325ab (patch)
treefb267ae4e9cfd55c015ae4a32d359be20f05263d
parent18ca2528423708103860a0dfd480d3426dc52a06 (diff)
downloadpython-json-pointer-ce5c9fd499886e293050a5de8901558073a325ab.tar.gz
fix unicode literal quirks in Python 3.2
-rw-r--r--jsonpointer.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/jsonpointer.py b/jsonpointer.py
index dfb494e..05ccd92 100644
--- a/jsonpointer.py
+++ b/jsonpointer.py
@@ -30,13 +30,15 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
+from __future__ import unicode_literals
+
""" Identify specific nodes in a JSON document (RFC 6901) """
# Will be parsed by setup.py to determine package metadata
-__author__ = u'Stefan Kögl <stefan@skoegl.net>'
-__version__ = u'1.0'
-__website__ = u'https://github.com/stefankoegl/python-json-pointer'
-__license__ = u'Modified BSD License'
+__author__ = 'Stefan Kögl <stefan@skoegl.net>'
+__version__ = '1.0'
+__website__ = 'https://github.com/stefankoegl/python-json-pointer'
+__license__ = 'Modified BSD License'
try: