Skip to content

Commit

Permalink
[frontend] fixes #1311777
Browse files Browse the repository at this point in the history
  • Loading branch information
clime committed Mar 1, 2016
1 parent 286b431 commit 4661b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/coprs_frontend/coprs/logic/builds_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def delete_build(cls, user, build):
"Unfinished build")

# Only failed, finished, succeeded get here.
if build.state not in ["cancelled"]: # has nothing in backend to delete
if build.state not in ["canceled"]: # has nothing in backend to delete
ActionsLogic.send_delete_build(build)

for build_chroot in build.build_chroots:
Expand Down

0 comments on commit 4661b12

Please sign in to comment.