mirror of
https://github.com/beetbox/beets.git
synced 2025-12-26 18:43:38 +01:00
fixed flake8 long line warning
This commit is contained in:
parent
d2e32a6b20
commit
dfa45f62a5
1 changed files with 2 additions and 1 deletions
|
|
@ -36,7 +36,8 @@ class IncludeLazyConfig(confuse.LazyConfig):
|
|||
if os.path.isfile(filename):
|
||||
self.set_file(filename)
|
||||
else:
|
||||
raise FileNotFoundError("Warning! Configuration file({0}) does not exist!".format(filename))
|
||||
raise FileNotFoundError(
|
||||
"Warning! Configuration file({0}) does not exist!".format(filename))
|
||||
except confuse.NotFoundError:
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue