Skip to content

Commit

Permalink
missing pathS
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrinux committed Aug 2, 2018
1 parent c8098c3 commit 0482a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py3status/modules/file_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 0482a40

Please sign in to comment.