Skip to content

Commit

Permalink
config: fix missing file path in warning message.
Browse files Browse the repository at this point in the history
Thanks, flake8!
  • Loading branch information
kingosticks committed Oct 10, 2020
1 parent edb4025 commit 8d53ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def _load_file(parser, file_path):
return
if not os.access(str(file_path), os.R_OK):
logger.warning(
f"Loading config from file_path.as_uri() failed; "
f"Loading config from {file_path.as_uri()} failed; "
f"read permission missing"
)
return
Expand Down

0 comments on commit 8d53ad7

Please sign in to comment.