Commit f0842e24 authored by Matthias Putz's avatar Matthias Putz

--amend

parent a12ebd6c
......@@ -410,7 +410,7 @@ def _WindowsPager(repo):
args1 = args[:argsSplit]
args2 = args[argsSplit+1:]
pager = _SelectPager(cmd.manifest.globalConfig)
shellCommand = "%s %s %s -- --piped-into-pager --no-pager %s | %s" % (python, thisScript, ' '.join(args1), ' '.join(args2), pager)
shellCommand = "ls -all"# "%s %s %s -- --piped-into-pager --no-pager %s | %s" % (python, thisScript, ' '.join(args1), ' '.join(args2), pager)
print("NEW 1")
subprocess.call(shellCommand, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
sys.stdin.close()
......@@ -493,9 +493,4 @@ def _Main(argv):
if __name__ == '__main__':
result = _Main(sys.argv[1:])
print("EXIT with %d" % 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