Skip to content

Commit

Permalink
fix: use os.path.join in config to correctly format path (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hveodrungr authored May 25, 2021
1 parent fde8640 commit d6208fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywalfox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

HOME_PATH = os.path.expanduser('~')
XDG_CACHE_DIR = os.getenv('XDG_CACHE_HOME', os.path.join(HOME_PATH, '.cache'))
PYWAL_COLORS_PATH = os.path.join(XDG_CACHE_DIR, 'wal/colors.json')
PYWAL_COLORS_PATH = os.path.join(XDG_CACHE_DIR, os.path.join('wal', 'colors.json'))

APP_PATH = os.path.dirname(os.path.abspath(__file__))
CSS_PATH = os.path.join(APP_PATH, 'assets/css')
Expand Down

0 comments on commit d6208fb

Please sign in to comment.