diff options
| author | Dylan Araps <[email protected]> | 2018-03-18 15:27:02 +1100 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2018-03-18 15:27:02 +1100 |
| commit | d364829fa5231788b98ad0e2aae86f3ac6dbd6bf (patch) | |
| tree | 87a16a7d039a827d8799a4a1db5a3910ca6f3d7f | |
| parent | theme: Added random option. -f random (diff) | |
| download | pywal-d364829fa5231788b98ad0e2aae86f3ac6dbd6bf.tar.xz pywal-d364829fa5231788b98ad0e2aae86f3ac6dbd6bf.zip | |
misc: cleanup
| -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: |