Skip to content

Commit

Permalink
Allow to provide DEBUGFAIL as option
Browse files Browse the repository at this point in the history
  • Loading branch information
misery committed Jul 7, 2024
1 parent 7fa459a commit 4cdb17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/mercurial_git_push.py
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,7 @@ def _handle_approved_review_requests(self, revreqs):
if idx is None:
if self._is_multi_head_forbidden() and self._is_multi_head():
self.log('Multiple heads per branch are forbidden!')
else:
elif 'DEBUGFAIL' not in OPTIONS:
for r in revreqs:
self.log('Closing review request: %s', r.id())
r.close()
Expand Down

0 comments on commit 4cdb17a

Please sign in to comment.