Fixed a few imports and docs.

This commit is contained in:
Michael Lazar
2015-03-20 02:25:23 -07:00
parent 7d9c8ad0d4
commit 688289f00c
5 changed files with 16 additions and 16 deletions

View File

@@ -45,8 +45,8 @@ def command_line():
parser.add_argument('-l', dest='link', help='full link to a submission')
parser.add_argument('--unicode', action='store_true',
help='enable unicode (experimental)')
parser.add_argument('--log', action='store',
help='Log all HTTP requests to the given file')
parser.add_argument('--log', metavar='FILE', action='store',
help='Log HTTP requests')
group = parser.add_argument_group('authentication (optional)', AUTH)
group.add_argument('-u', dest='username', help='reddit username')
@@ -102,4 +102,4 @@ def main():
except KeyboardInterrupt:
return
sys.exit(main())
sys.exit(main())