summaryrefslogtreecommitdiff
path: root/jsonpatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonpatch.py')
-rw-r--r--jsonpatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonpatch.py b/jsonpatch.py
index 0116ca2..9e9e5aa 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -179,7 +179,7 @@ def make_patch(src, dst):
if new != dst:
return JsonPatch.from_diff(src, dst, False)
- return JsonPatch.from_diff(src, dst)
+ return patch
class JsonPatch(object):