Skip to content

Commit

Permalink
Clarify help strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Kozma committed Oct 18, 2016
1 parent e28994f commit 299b9d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ebu_tt_live/scripts/ebu_ebuttd_encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
default='current', metavar='HH:MM:SS.mmm')
parser.add_argument('-o', '--output-folder', dest='output_folder', default='./')
parser.add_argument('-of', '--output-format', dest='output_format', default='xml')
parser.add_argument('--proxy', dest='proxy', help='Proxy server', type=str, metavar='PROXY:PORT')
parser.add_argument('--discard', dest='discard', help='Discard old', action='store_true', default=False)
parser.add_argument('--proxy', dest='proxy', help='HTTP Proxy server (http:// protocol not needed!)', type=str, metavar='ADDRESS:PORT')
parser.add_argument('--discard', dest='discard', help='Discard already converted documents', action='store_true', default=False)


def start_timer(encoder):
Expand Down
2 changes: 1 addition & 1 deletion ebu_tt_live/scripts/ebu_simple_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
help='Works only with -m, if set the script will wait for new lines to be added to the file once the last line is reached. Exactly like tail -f does.',
action="store_true", default=False
)
parser.add_argument('--proxy', dest='proxy', help='Proxy server', type=str, metavar='PROXY:PORT')
parser.add_argument('--proxy', dest='proxy', help='HTTP Proxy server (http:// protocol not needed!)', type=str, metavar='ADDRESS:PORT')


def main():
Expand Down

0 comments on commit 299b9d6

Please sign in to comment.