projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0904c5
)
Expand user's home in batch file path.
author
Kevin Deldycke
<kevin@deldycke.com>
Sat, 7 May 2016 18:03:25 +0000
(20:03 +0200)
committer
Kevin Deldycke
<kevin@deldycke.com>
Sat, 7 May 2016 18:03:25 +0000
(20:03 +0200)
youtube_dl/__init__.py
patch
|
blob
|
history
diff --git
a/youtube_dl/__init__.py
b/youtube_dl/__init__.py
index 737f6545d4136401dd3d8ddd691ad52e86894bb0..7a0466077ae1e37682707ec0c29a753741769c85 100644
(file)
--- a/
youtube_dl/__init__.py
+++ b/
youtube_dl/__init__.py
@@
-86,7
+86,9
@@
def _real_main(argv=None):
if opts.batchfile == '-':
batchfd = sys.stdin
else:
- batchfd = io.open(opts.batchfile, 'r', encoding='utf-8', errors='ignore')
+ batchfd = io.open(
+ compat_expanduser(opts.batchfile),
+ 'r', encoding='utf-8', errors='ignore')
batch_urls = read_batch_urls(batchfd)
if opts.verbose:
write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')