mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-09 17:39:31 +00:00
use exists() instead of isFile
This commit is contained in:
parent
87c036de7f
commit
e5584e0e1c
|
@ -39,7 +39,7 @@ class WriteUserData(object):
|
||||||
self.userdata_file = open(TOKENS_FILE, "r+", encoding="utf-8")
|
self.userdata_file = open(TOKENS_FILE, "r+", encoding="utf-8")
|
||||||
elif file_type == UserDataFiles.JOBS:
|
elif file_type == UserDataFiles.JOBS:
|
||||||
# Make sure file exists
|
# Make sure file exists
|
||||||
if not os.path.isfile(JOBS_FILE):
|
if not os.path.exists(JOBS_FILE):
|
||||||
with open(JOBS_FILE, "w", encoding="utf-8") as jobs_file:
|
with open(JOBS_FILE, "w", encoding="utf-8") as jobs_file:
|
||||||
jobs_file.write("{}")
|
jobs_file.write("{}")
|
||||||
self.userdata_file = open(JOBS_FILE, "r+", encoding="utf-8")
|
self.userdata_file = open(JOBS_FILE, "r+", encoding="utf-8")
|
||||||
|
@ -70,7 +70,7 @@ class ReadUserData(object):
|
||||||
self.userdata_file = open(TOKENS_FILE, "r", encoding="utf-8")
|
self.userdata_file = open(TOKENS_FILE, "r", encoding="utf-8")
|
||||||
elif file_type == UserDataFiles.JOBS:
|
elif file_type == UserDataFiles.JOBS:
|
||||||
# Make sure file exists
|
# Make sure file exists
|
||||||
if not os.path.isfile(JOBS_FILE):
|
if not os.path.exists(JOBS_FILE):
|
||||||
with open(JOBS_FILE, "w", encoding="utf-8") as jobs_file:
|
with open(JOBS_FILE, "w", encoding="utf-8") as jobs_file:
|
||||||
jobs_file.write("{}")
|
jobs_file.write("{}")
|
||||||
self.userdata_file = open(JOBS_FILE, "r", encoding="utf-8")
|
self.userdata_file = open(JOBS_FILE, "r", encoding="utf-8")
|
||||||
|
|
Loading…
Reference in a new issue