This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
Do not use HTML characters in output
This messes up the format when people paste it outside of code tags.
totalwebcasting
Philipp Hagemeister
10 years ago
parent
5f4c318844
commit
d2e32f7df5
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
youtube_dl/options.py
+ 1
- 1
youtube_dl/options.py
View File
@ -87,7 +87,7 @@ def parseOpts(overrideArguments=None):
for
private_opt
in
[
'
-p
'
,
'
--password
'
,
'
-u
'
,
'
--username
'
,
'
--video-password
'
]
:
try
:
i
=
opts
.
index
(
private_opt
)
opts
[
i
+
1
]
=
'
<
PRIVATE
>
'
opts
[
i
+
1
]
=
'
PRIVATE
'
except
ValueError
:
pass
return
opts
Write
Preview
Loading…
Cancel
Save