##// END OF EJS Templates
dispatch: don't clamp the range of the exit code twice...
Kevin Bullock -
r36700:68328202 default
parent child Browse files
Show More
@@ -85,7 +85,7 b' def run():'
85 req = request(pycompat.sysargv[1:])
85 req = request(pycompat.sysargv[1:])
86 err = None
86 err = None
87 try:
87 try:
88 status = (dispatch(req) or 0) & 255
88 status = (dispatch(req) or 0)
89 except error.StdioError as e:
89 except error.StdioError as e:
90 err = e
90 err = e
91 status = -1
91 status = -1
General Comments 0
You need to be logged in to leave comments. Login now