From df3395ab1db3957e71c5a9701f0d3bb622faf16f Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 15 Jan 2018 16:57:26 +0200 Subject: Drop support for EOL Python 2.6 and 3.3 --- jsonpointer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jsonpointer.py') diff --git a/jsonpointer.py b/jsonpointer.py index 285fc0c..a844729 100644 --- a/jsonpointer.py +++ b/jsonpointer.py @@ -174,7 +174,7 @@ class JsonPointer(object): # validate escapes invalid_escape = self._RE_INVALID_ESCAPE.search(pointer) if invalid_escape: - raise JsonPointerException('Found invalid escape {0}'.format( + raise JsonPointerException('Found invalid escape {}'.format( invalid_escape.group())) parts = pointer.split('/') -- cgit v1.2.1