summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-01-27 23:09:25 +0200
committerLars Wirzenius <liw@liw.fi>2017-01-27 23:09:25 +0200
commitc274e2940c2b0949f768fc914a4792d35682af9c (patch)
tree34eed99a34bbc210fb37361a9f4d95c58c25a52b
parent81a71240547283270b5edf94671c33774c9cddf3 (diff)
downloadcliapp-c274e2940c2b0949f768fc914a4792d35682af9c.tar.gz
Break long line
-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'