mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-05 01:09:30 +00:00
fix FileNotFoundError in cookie hide
This commit is contained in:
@@ -46,7 +46,7 @@ class CookieHandler:
|
||||
"""hide cookie file if not in use"""
|
||||
try:
|
||||
os.remove(self.COOKIE_PATH)
|
||||
except FileExistsError:
|
||||
except FileNotFoundError:
|
||||
print("cookie: not available")
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user