From a2c3bc2de1a8f315f9b21e0846c17d92864c525c Mon Sep 17 00:00:00 2001 From: Alexander Shorin Date: Wed, 12 Sep 2012 08:16:54 +0400 Subject: 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 --- jsonpointer.py | 3 +-- 1 file changed, 1 insertion(+), 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 ' +__author__ = 'Stefan Kögl ' __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 ' -- cgit v1.2.1