diff options
Diffstat (limited to 'jsonpatch.py')
-rw-r--r-- | jsonpatch.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/jsonpatch.py b/jsonpatch.py index 3e3883d..c9e9d0b 100644 --- a/jsonpatch.py +++ b/jsonpatch.py @@ -307,7 +307,6 @@ class JsonPatch(object): def _get_operation(self, operation): if 'op' not in operation: raise JsonPatchException("Operation does not contain 'op' member") - raise Exception op = operation['op'] if op not in self.operations: |