fixed flake8 long line warning (maybe)

This commit is contained in:
Adam Jakab 2020-02-24 00:22:34 +01:00
parent dfa45f62a5
commit c90f7aacfc

View file

@ -36,8 +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