summaryrefslogtreecommitdiff
path: root/jsonpatch.py
diff options
context:
space:
mode:
authorAlanscut <wp_scut@163.com>2020-05-23 18:16:06 +0800
committerAlanscut <wp_scut@163.com>2020-05-23 18:16:06 +0800
commit1015d7f35958f196478f32148656171f87358cde (patch)
treef074eee156da3c25390a1658d742df0c5fec03e0 /jsonpatch.py
parent9e4d423c22bedad6ffc260541ae587114dfed70a (diff)
downloadpython-json-patch-1015d7f35958f196478f32148656171f87358cde.tar.gz
fix #111: optimizing exception message
Diffstat (limited to 'jsonpatch.py')
-rw-r--r--jsonpatch.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/jsonpatch.py b/jsonpatch.py
index ca22e34..22e1156 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -334,12 +334,18 @@ class PatchOperation(object):
def __init__(self, operation):
+ if not operation.__contains__('path'):
+ raise InvalidJsonPatch("Operation must have a 'path' member")
+
if isinstance(operation['path'], JsonPointer):
self.location = operation['path'].path
self.pointer = operation['path']
else:
self.location = operation['path']
- self.pointer = JsonPointer(self.location)
+ try:
+ self.pointer = JsonPointer(self.location)
+ except TypeError as ex:
+ raise InvalidJsonPatch("Invalid 'path'")
self.operation = operation