1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-08-17 12:19:38 +02:00

Fix pathname capitalization inconsistency issues

This commit is contained in:
Alexander Graf 2017-07-20 18:08:16 +02:00
parent 1fdce16f46
commit b3f916b371

View File

@ -90,7 +90,7 @@ def get_default_session_filename(username: str) -> str:
"""Returns default session filename for given username."""
dirname = tempfile.gettempdir() + "/" + ".instaloader-" + getpass.getuser()
filename = dirname + "/" + "session-" + username
return filename
return filename.lower()
def copy_session(session: requests.Session) -> requests.Session:
@ -711,9 +711,9 @@ class Instaloader:
"""
profile_exists = len(json_data["entry_data"]) > 0 and "ProfilePage" in json_data["entry_data"]
if self.profile_subdirs:
id_filename = profile + "/id"
id_filename = profile.lower() + "/id"
else:
id_filename = profile + "__id"
id_filename = profile.lower() + "__id"
try:
with open(id_filename, 'rb') as id_file:
profile_id = int(id_file.read())