summaryrefslogtreecommitdiffstats
path: root/py3status/__init__.py
diff options
context:
space:
mode:
authorFrank Haun <fh@fhaun.de>2014-07-02 01:20:23 +0200
committerFrank Haun <fh@fhaun.de>2014-07-02 01:20:23 +0200
commit7610a9f6ece43b96b10cf5843e300178c0ef55d8 (patch)
tree5441c5fe07f7f239a1eefd09f16d7093561efd62 /py3status/__init__.py
parenta1b74d382a72573acf3eae1c467d0735786aa3ee (diff)
Variable renamed, home -> home_path
Diffstat (limited to 'py3status/__init__.py')
-rwxr-xr-xpy3status/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/py3status/__init__.py b/py3status/__init__.py
index 6f6d172..4d26ca2 100755
--- a/py3status/__init__.py
+++ b/py3status/__init__.py
@@ -591,13 +591,13 @@ class Py3statusWrapper():
Create the py3status based on command line options we received.
"""
# get home path
- home = '{}{}'.format(os.path.expanduser('~'), '/')
+ home_path = '{}{}'.format(os.path.expanduser('~'), '/')
# defaults
config = {
'cache_timeout': 60,
'i3status_config_path': '/etc/i3status.conf',
- 'include_paths': ['{}{}'.format(home, '.i3/py3status/')],
+ 'include_paths': ['{}{}'.format(home_path, '.i3/py3status/')],
'interval': 1
}