This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix: forget return value after `run_method` execution
version-14
Sagar Vora
3 years ago
parent
a8a544cf44
commit
741ea13db2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
frappe/model/document.py
+ 1
- 1
frappe/model/document.py
View File
@@ -1154,7 +1154,7 @@ class Document(BaseDocument):
for f in hooks:
add_to_return_value(self, f(self, method, *args, **kwargs))
return self._return_value
return self._
_dict__.pop("_
return_value
", None)
return runner
Write
Preview
Loading…
Cancel
Save