summaryrefslogtreecommitdiff
path: root/example_runcmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'example_runcmd.py')
-rw-r--r--example_runcmd.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/example_runcmd.py b/example_runcmd.py
index 7ae0dcb..31ff05d 100644
--- a/example_runcmd.py
+++ b/example_runcmd.py
@@ -25,6 +25,7 @@ def cb():
print 'sleeping 10'
-r = cliapp.runcmd_unchecked(['sleep', '5'], output_timeout=2, timeout_callback=cb)
+r = cliapp.runcmd_unchecked(
+ ['sleep', '5'], output_timeout=2, timeout_callback=cb)
print repr(r)
print 'done'