misc: cleanup

This commit is contained in:
Dylan Araps 2018-03-18 15:50:38 +11:00
parent a58a9037c8
commit 3093cce327
3 changed files with 4 additions and 3 deletions

View File

@ -164,9 +164,6 @@ def process_args(args):
def main():
"""Main script function."""
util.create_dir(os.path.join(CONF_DIR, "colorschemes"))
util.create_dir(os.path.join(CONF_DIR, "templates"))
args = get_args(sys.argv[1:])
process_args(args)

View File

@ -54,6 +54,8 @@ def every(colors, output_dir=CACHE_DIR):
template_dir = os.path.join(MODULE_DIR, "templates")
template_dir_user = os.path.join(CONF_DIR, "templates")
util.create_dir(template_dir_user)
join = os.path.join # Minor optimization.
for file in os.scandir(template_dir):

View File

@ -36,6 +36,8 @@ def file(input_file):
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))
# Find the theme file.
if os.path.isfile(input_file):
theme_file = input_file