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
Proper reraise of NameError
version-14
Anand Doshi
11 years ago
parent
b605bbb624
commit
f26f43dc3c
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/base_document.py
+ 1
- 1
frappe/model/base_document.py
View File
@@ -182,7 +182,7 @@ class BaseDocument(object):
), d.values())
except Exception, e:
if e.args[0]==1062:
raise NameError
raise NameError
, e
else:
raise
Write
Preview
Loading…
Cancel
Save