From ce5c9fd499886e293050a5de8901558073a325ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Sat, 13 Apr 2013 18:39:45 +0200 Subject: fix unicode literal quirks in Python 3.2 --- jsonpointer.py | 10 ++++++---- 1 file 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 ' -__version__ = u'1.0' -__website__ = u'https://github.com/stefankoegl/python-json-pointer' -__license__ = u'Modified BSD License' +__author__ = 'Stefan Kögl ' +__version__ = '1.0' +__website__ = 'https://github.com/stefankoegl/python-json-pointer' +__license__ = 'Modified BSD License' try: -- cgit v1.2.1