We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a71ea61 commit aedd648Copy full SHA for aedd648
tools/src/main/python/opengrok_tools/scm/mercurial.py
@@ -157,7 +157,7 @@ def strip_outgoing(self):
157
# If the 'hg out' command fails for some reason, it will return 255.
158
# Hence, check for positive value as bail out indication.
159
#
160
- if status > 0:
+ if cmd.getstate() != Command.FINISHED or status > 0:
161
return False
162
163
revisions = list(filter(None, cmd.getoutputstr().split("\n")))
0 commit comments