mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
Do not pass URLs around in Unicode form (fixes issue #92)
This commit is contained in:
parent
8cc468de75
commit
bd3cdf6dc4
1 changed files with 0 additions and 4 deletions
|
@ -1578,10 +1578,6 @@ if __name__ == '__main__':
|
||||||
sys.exit(u'ERROR: batch file could not be read')
|
sys.exit(u'ERROR: batch file could not be read')
|
||||||
all_urls = batchurls + args
|
all_urls = batchurls + args
|
||||||
|
|
||||||
# Make sure all URLs are in our preferred encoding
|
|
||||||
for i in range(0, len(all_urls)):
|
|
||||||
all_urls[i] = unicode(all_urls[i], preferredencoding())
|
|
||||||
|
|
||||||
# Conflicting, missing and erroneous options
|
# Conflicting, missing and erroneous options
|
||||||
if opts.usenetrc and (opts.username is not None or opts.password is not 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')
|
parser.error(u'using .netrc conflicts with giving username/password')
|
||||||
|
|
Loading…
Reference in a new issue