diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-06-23 19:00:16 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-06-23 19:00:16 +0200 |
commit | 8756c5fe7a7eed00361fc6543ccf3a66aa768be0 (patch) | |
tree | f8e9df3501ac0adff9c74e791eeee8557831cb88 /youtube_dl/__init__.py | |
parent | 828dba298328d3fd719bc9b4f076ebf5eb48c3d8 (diff) | |
parent | 51090d636b06bd75b6b567bf3790301975c88256 (diff) |
Merge remote-tracking branch 'origin/vimeo_passworded_videos'
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r-- | youtube_dl/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 32141439f..6f9ffba1e 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -423,7 +423,7 @@ def _real_main(argv=None): if opts.usenetrc and (opts.username is not None or opts.password is not None): parser.error(u'using .netrc conflicts with giving username/password') if opts.password is not None and opts.username is None: - parser.error(u'account username missing') + print(u'WARNING: account username missing') if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid): parser.error(u'using output template conflicts with using title, video ID or auto number') if opts.usetitle and opts.useid: |