diff --git a/py3status/modules/file_status.py b/py3status/modules/file_status.py index 3a53bc3583..e1ab563c8a 100644 --- a/py3status/modules/file_status.py +++ b/py3status/modules/file_status.py @@ -55,7 +55,7 @@ from glob import glob from os.path import basename, expanduser -STRING_NO_PATH = 'missing path' +STRING_NO_PATHS = 'missing paths' class Py3status: @@ -99,7 +99,7 @@ class Meta: def post_config_hook(self): if not self.paths: - raise Exception(STRING_NO_PATH) + raise Exception(STRING_NO_PATHS) # icon deprecation on = getattr(self, 'icon_available', u'\u25cf')