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(commnds): Raise CalledProcessError if process returns non-zero exit code
version-14
Aditya Hase
5 years ago
parent
ecf3dfeb15
commit
7d65a557d1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
frappe/commands/__init__.py
+ 1
- 1
frappe/commands/__init__.py
View File
@@ -62,7 +62,7 @@ def popen(command, *args, **kwargs):
return_ = proc.wait()
if raise_err:
if r
eturn_ and r
aise_err:
raise subprocess.CalledProcessError(return_, command)
return return_
Write
Preview
Loading…
Cancel
Save