Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
general: Fix incorrect dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Apr 29, 2018
1 parent 9d73a5f commit b73883b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywal/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def file(input_file):
theme_name = ".".join((input_file, "json"))
user_theme_file = os.path.join(CONF_DIR, "colorschemes", theme_name)
theme_file = os.path.join(MODULE_DIR, "colorschemes", theme_name)
util.create_dir(os.path.dirname(user_theme_file))
util.create_dir(os.path.join(CONF_DIR, "colorschemes"))

# Find the theme file.
if os.path.isfile(input_file):
Expand Down

0 comments on commit b73883b

Please sign in to comment.