diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-03-18 15:27:02 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-03-18 15:27:02 +1100 |
| commit | d364829fa5231788b98ad0e2aae86f3ac6dbd6bf (patch) | |
| tree | 87a16a7d039a827d8799a4a1db5a3910ca6f3d7f /pywal/__main__.py | |
| parent | 7c3e1ad4e86a2f2747a63b81127f377a2a38e87c (diff) | |
misc: cleanup
Diffstat (limited to 'pywal/__main__.py')
| -rw-r--r-- | pywal/__main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index d7ba602..97eb999 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -106,9 +106,9 @@ def process_args(args): sys.exit(0) if args.f == "list_themes": - themes = theme.index() - themes = [theme.name.replace(".json", "") for theme in themes] + themes = [theme.name.replace(".json", "") for theme in theme.index()] print("Themes:", ", ".join(themes)) + print("Extra: 'random (select a random theme)'") sys.exit(0) if args.q: |
