From 0482a40d023560fbfde687f84e6af6e84af9dc16 Mon Sep 17 00:00:00 2001 From: Cyril Levis Date: Thu, 2 Aug 2018 15:27:20 +0200 Subject: [PATCH] missing pathS --- py3status/modules/file_status.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')