From 44ec8bc38d68a9ab3bb52eacb56d8e7753d4c3a6 Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Tue, 24 Sep 2013 15:46:00 +0200 Subject: [PATCH] Slightly improved help message --- radiorec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiorec.py b/radiorec.py index 71c3613..a090ed1 100755 --- a/radiorec.py +++ b/radiorec.py @@ -124,7 +124,7 @@ def main(): subparsers = parser.add_subparsers(help='sub-command help') parser_record = subparsers.add_parser('record', help='Record a station') parser_record.add_argument('station', type=str, help='Name of the radio station ' - '(see config file for a list)') + '(see `radiorec.py list`)') parser_record.add_argument('duration', type=check_duration, help='Recording time in minutes') parser_record.add_argument('name', nargs='?', type=str,