summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shorin <kxepal@gmail.com>2012-09-12 08:16:54 +0400
committerAlexander Shorin <kxepal@gmail.com>2012-09-12 08:16:54 +0400
commita2c3bc2de1a8f315f9b21e0846c17d92864c525c (patch)
tree86a80154ae1f3b8705cdf91a708154486f170ee5
parent3fadd63a77c7074fa7a4cd6bc04b0c34891a0d64 (diff)
downloadpython-json-pointer-a2c3bc2de1a8f315f9b21e0846c17d92864c525c.tar.gz
Stefan, would you mind if I fix your name?(:
$ python3.2 jsonpointer.py File "jsonpointer.py", line 37 SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xf6 in position 0: invalid start byte
-rw-r--r--jsonpointer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/jsonpointer.py b/jsonpointer.py
index 8683303..12f3744 100644
--- a/jsonpointer.py
+++ b/jsonpointer.py
@@ -34,7 +34,7 @@
http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-04 """
# Will be parsed by setup.py to determine package metadata
-__author__ = 'Stefan Kögl <stefan@skoegl.net>'
+__author__ = 'Stefan Kögl <stefan@skoegl.net>'
__version__ = '0.3'
__website__ = 'https://github.com/stefankoegl/python-json-pointer'
__license__ = 'Modified BSD License'
@@ -219,4 +219,3 @@ def pairwise(iterable):
a, b = tee(iterable)
next(b, None)
return izip(a, b)
-__author__ = 'Stefan Kögl <stefan@skoegl.net>'