use correct exception
This commit is contained in:
parent
4afef01626
commit
c8ca8c0460
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ class Stage:
|
|||
stderr=subprocess.STDOUT
|
||||
)
|
||||
if r.returncode != 0:
|
||||
raise AssemblerFailed(self.name, r.returncode, r.stdout)
|
||||
raise StageFailed(self.name, r.returncode, r.stdout)
|
||||
|
||||
return {
|
||||
"name": self.name,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue