Commit a12ebd6c authored by Matthias Putz's avatar Matthias Putz

--amend

parent ce456faf
...@@ -413,6 +413,7 @@ def _WindowsPager(repo): ...@@ -413,6 +413,7 @@ def _WindowsPager(repo):
shellCommand = "%s %s %s -- --piped-into-pager --no-pager %s | %s" % (python, thisScript, ' '.join(args1), ' '.join(args2), pager) shellCommand = "%s %s %s -- --piped-into-pager --no-pager %s | %s" % (python, thisScript, ' '.join(args1), ' '.join(args2), pager)
print("NEW 1") print("NEW 1")
subprocess.call(shellCommand, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) subprocess.call(shellCommand, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
sys.stdin.close()
print("DONE") print("DONE")
return True return True
else: else:
...@@ -492,4 +493,9 @@ def _Main(argv): ...@@ -492,4 +493,9 @@ def _Main(argv):
if __name__ == '__main__': if __name__ == '__main__':
result = _Main(sys.argv[1:]) result = _Main(sys.argv[1:])
print("EXIT with %d" % result) print("EXIT with %d" % result)
exit(result) import time
time.sleep(5)
print('done sleeping')
sys.stdin.close()
sys.stdout.close()
sys.exit(result)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment