Handle ValueError on bad profile id file
Fixes "ValueError: invalid literal for int() with base 10: b''", reported in #95.
This commit is contained in:
parent
2722da6ae4
commit
084cfb102c
@ -643,7 +643,7 @@ class Instaloader:
|
|||||||
'{0}/{1}_id'.format(self.dirname_pattern.format(), newname.lower()))
|
'{0}/{1}_id'.format(self.dirname_pattern.format(), newname.lower()))
|
||||||
return profile_from_id
|
return profile_from_id
|
||||||
return profile
|
return profile
|
||||||
except FileNotFoundError:
|
except (FileNotFoundError, ValueError):
|
||||||
pass
|
pass
|
||||||
if profile_exists:
|
if profile_exists:
|
||||||
os.makedirs(self.dirname_pattern.format(profile=profile_name.lower(),
|
os.makedirs(self.dirname_pattern.format(profile=profile_name.lower(),
|
||||||
|
Loading…
Reference in New Issue
Block a user