Fixed error when encoding error
Signed-off-by: Rémi BERTHO <remi.bertho@dalan.fr>
This commit is contained in:
parent
8bf32f65a5
commit
91fbfe0c00
1 changed files with 4 additions and 1 deletions
5
SSnR.py
5
SSnR.py
|
@ -130,7 +130,10 @@ def main():
|
|||
with open(filename, "r", encoding="utf8") as file:
|
||||
string = file.read()
|
||||
except OSError as exception:
|
||||
print("Error: file not found: " + str(exception))
|
||||
print("Error: file \"" + filename + "\" not found: " + str(exception))
|
||||
continue
|
||||
except UnicodeDecodeError as exception:
|
||||
print("Error: the file \"" + filename + "\" is not UTF-8 encoded: " + str(exception))
|
||||
continue
|
||||
|
||||
if args["replace"] is not None:
|
||||
|
|
Loading…
Reference in a new issue