mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2025-01-14 12:50:13 +00:00
avoid unneeded cookie open
This commit is contained in:
parent
3ca86ba91d
commit
087043811f
@ -40,6 +40,9 @@ class CookieHandler:
|
||||
print("no cookie imported")
|
||||
raise FileNotFoundError
|
||||
|
||||
if os.path.exists(self.COOKIE_PATH):
|
||||
return self.COOKIE_PATH
|
||||
|
||||
with open(self.COOKIE_PATH, "w", encoding="utf-8") as cookie_file:
|
||||
cookie_file.write(cookie)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user