summaryrefslogtreecommitdiff
path: root/jsonpointer.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonpointer.py')
-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: