diff options
author | sebastian.sjoholm <sebastian.sjoholm@gmail.com> | 2012-12-28 10:23:45 +0000 |
---|---|---|
committer | sebastian.sjoholm <sebastian.sjoholm@gmail.com> | 2012-12-28 10:23:45 +0000 |
commit | 8b1d7390eec6213bb4feffc57d5669a1a0c1e3fb (patch) | |
tree | e5338a86136b6f5a998ebd6c14a5e7b835a58131 | |
parent | c136b842c9f5297ae440b0fe8a3d8566f718d60c (diff) | |
download | drcontrol-8b1d7390eec6213bb4feffc57d5669a1a0c1e3fb.zip drcontrol-8b1d7390eec6213bb4feffc57d5669a1a0c1e3fb.tar.gz |
fixes
-rwxr-xr-x | drcontrol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drcontrol.py b/drcontrol.py index de090d2..d8af806 100755 --- a/drcontrol.py +++ b/drcontrol.py @@ -154,7 +154,7 @@ if __name__ == '__main__': parser = OptionParser() parser.add_option("-d", "--device", action="store", type="string", dest="device", help="The device serial, example A6VV5PHY") parser.add_option("-l", "--list", action="store_true", dest="list", default=False, help="List all devices") - parser.add_option("-r", "--relay", action="store", type="string", dest="relay", help="Relay to command by number") + parser.add_option("-r", "--relay", action="store", type="string", dest="relay", help="Relay to command by number: 1...8") parser.add_option("-s", "--state", action="store", type="string", dest="state", help="State: on or off") parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="Verbose, print all info on screen") |