fixed flake8 long line warning

This commit is contained in:
Adam Jakab 2020-02-24 00:07:24 +01:00
parent d2e32a6b20
commit dfa45f62a5

View file

@ -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