mirror of
https://code.hackerspace.pl/q3k/youtube-dl
synced 2025-03-16 11:43:02 +00:00
Load cookies if the cookie file exists when starting the program
This commit is contained in:
parent
331ce0a05d
commit
e0c982c8d0
@ -2190,6 +2190,8 @@ if __name__ == '__main__':
|
|||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
jar = cookielib.MozillaCookieJar(opts.cookiefile)
|
jar = cookielib.MozillaCookieJar(opts.cookiefile)
|
||||||
|
if os.path.isfile(opts.cookiefile) and os.access(opts.cookiefile, os.R_OK):
|
||||||
|
jar.load()
|
||||||
except (IOError, OSError), err:
|
except (IOError, OSError), err:
|
||||||
sys.exit(u'ERROR: unable to open cookie file')
|
sys.exit(u'ERROR: unable to open cookie file')
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user