Skip to content

Commit

Permalink
Fix #22
Browse files Browse the repository at this point in the history
  • Loading branch information
gillescastel committed Nov 18, 2020
1 parent d3b26f2 commit cd404e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion styles.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def create_if_not_exists(directory):
'object': create_if_not_exists(CONFIG_PATH / 'objects'),
}

rofi_theme_params = ['-theme', config['rofi_theme']] if 'rofi_theme' in config else []
rofi_theme_params = ['-theme', config['rofi_theme']] if ('rofi_theme' in config and config['rofi_theme'] is not None) else []

print(data_dirs)

Expand Down

0 comments on commit cd404e3

Please sign in to comment.