Updated a few descriptions.

This commit is contained in:
Michael Lazar
2016-04-12 16:10:27 -07:00
parent b72b7965c1
commit 16f4b151dd
2 changed files with 6 additions and 6 deletions

View File

@@ -33,22 +33,22 @@ def build_parser():
'-V', '--version', action='version', version='rtv '+__version__) '-V', '--version', action='version', version='rtv '+__version__)
parser.add_argument( parser.add_argument(
'-s', dest='subreddit', '-s', dest='subreddit',
help='name of the subreddit that will be opened on start') help='Name of the subreddit that will be opened on start')
parser.add_argument( parser.add_argument(
'-l', dest='link', '-l', dest='link',
help='full URL of a submission that will be opened on start') help='Full URL of a submission that will be opened on start')
parser.add_argument( parser.add_argument(
'--log', metavar='FILE', action='store', '--log', metavar='FILE', action='store',
help='log HTTP requests to the given file') help='Log HTTP requests to the given file')
parser.add_argument( parser.add_argument(
'--config', metavar='FILE', action='store', '--config', metavar='FILE', action='store',
help='Load configuration settings from the given file') help='Load configuration settings from the given file')
parser.add_argument( parser.add_argument(
'--ascii', action='store_const', const=True, '--ascii', action='store_const', const=True,
help='enable ascii-only mode') help='Enable ascii-only mode')
parser.add_argument( parser.add_argument(
'--monochrome', action='store_const', const=True, '--monochrome', action='store_const', const=True,
help='enable monochrome mode and force text to black & white') help='Disable color')
parser.add_argument( parser.add_argument(
'--non-persistent', dest='persistent', action='store_const', '--non-persistent', dest='persistent', action='store_const',
const=False, const=False,

View File

@@ -13,7 +13,7 @@
; This may be necessary for compatibility with some terminal browsers. ; This may be necessary for compatibility with some terminal browsers.
ascii = False ascii = False
; Turn on monochrome mode to force text to black and white. ; Turn on monochrome mode to disable color.
monochrome = False monochrome = False
; Enable debugging by logging all HTTP requests and errors to the given file. ; Enable debugging by logging all HTTP requests and errors to the given file.