aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/klippy.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-02-27 13:18:43 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-02-27 13:18:43 -0500
commit9be6cf226bf9e1beab1f5e4a499d46e38c2e422b (patch)
tree30154c7f205033152d2c71c7b191ad760292e39f /klippy/klippy.py
parent75b01be87e3f8acb8ea7f004319de91c8eab4404 (diff)
downloadkutter-9be6cf226bf9e1beab1f5e4a499d46e38c2e422b.tar.gz
kutter-9be6cf226bf9e1beab1f5e4a499d46e38c2e422b.tar.xz
kutter-9be6cf226bf9e1beab1f5e4a499d46e38c2e422b.zip
klippy: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r--klippy/klippy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py
index b5ce166f..c3b8de55 100644
--- a/klippy/klippy.py
+++ b/klippy/klippy.py
@@ -222,7 +222,8 @@ def main():
opts = optparse.OptionParser(usage)
opts.add_option("-i", "--debuginput", dest="debuginput",
help="read commands from file instead of from tty port")
- opts.add_option("-I", "--input-tty", dest="inputtty", default='/tmp/printer',
+ opts.add_option("-I", "--input-tty", dest="inputtty",
+ default='/tmp/printer',
help="input tty name (default is /tmp/printer)")
opts.add_option("-l", "--logfile", dest="logfile",
help="write log to file instead of stderr")