summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-01-26 21:59:47 +0200
committerLars Wirzenius <liw@liw.fi>2017-01-26 21:59:47 +0200
commit7d78edb00454d326554a7c6599c4a42c9913514e (patch)
tree66b7d483fc43b182b05706290c00157b51ce1b64
parent62c1c12fc3d720cf15bfcf0c762d55dd585f48c7 (diff)
downloadcliapp-7d78edb00454d326554a7c6599c4a42c9913514e.tar.gz
Make sleep shorter for faster debugging
-rw-r--r--example_runcmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example_runcmd.py b/example_runcmd.py
index 7eaf431..9122ecb 100644
--- a/example_runcmd.py
+++ b/example_runcmd.py
@@ -25,6 +25,6 @@ def cb():
print 'sleeping 10'
-r = cliapp.runcmd_unchecked(['sleep', '10'], output_timeout=2, timeout_callback=cb)
+r = cliapp.runcmd_unchecked(['sleep', '5'], output_timeout=2, timeout_callback=cb)
print repr(r)
print 'done'