Skip to content

Commit e98b875

Browse files
Fix format issue in logging
Signed-off-by: Jacki <[email protected]>
1 parent 8e451f8 commit e98b875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manuskript/load_save/version_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def loadProject(project, zip=None):
696696
files[os.path.join(p, f)] = fo.read()
697697

698698
except (UnicodeDecodeError, FileNotFoundError, IsADirectoryError) as e:
699-
LOGGER.error("Ignore file: "+ filename + "because of the error " + e.reason)
699+
LOGGER.error("Ignore file " + filename + " because of the error: " + e.reason)
700700

701701
except PermissionError as e:
702702
LOGGER.error("Cannot open file " + filename + ": " + e.strerror)

0 commit comments

Comments
 (0)