mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 05:17:59 +01:00
Add missing prefix to formatted strings
This commit is contained in:
parent
9d9c3e05e3
commit
f9b65dab70
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class DirectoryFetcher(Fetcher):
|
||||||
return
|
return
|
||||||
|
|
||||||
if not path.is_dir():
|
if not path.is_dir():
|
||||||
raise StorySourceError("Path is not a directory: {path}")
|
raise StorySourceError(f"Path is not a directory: {path}")
|
||||||
|
|
||||||
for item in Path(path).iterdir():
|
for item in Path(path).iterdir():
|
||||||
if not item.is_file():
|
if not item.is_file():
|
||||||
|
|
Loading…
Reference in a new issue