diff options
author | hut <hut@lavabit.com> | 2010-03-11 22:30:47 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-12 00:46:47 +0100 |
commit | f78b35d604625fdca71a81d30aaabb2962627908 (patch) | |
tree | 2586f7c535bfa17b498f795ddd3d7950d80ac522 | |
parent | a0fdb913401a6f28b1dfbca248d41c147b12cd20 (diff) | |
download | ranger-f78b35d604625fdca71a81d30aaabb2962627908.tar.gz |
ranger.colorschemes: look for custom colorschemes!
-rw-r--r-- | ranger/colorschemes/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ranger/colorschemes/__init__.py b/ranger/colorschemes/__init__.py index 422c6598..8b364c03 100644 --- a/ranger/colorschemes/__init__.py +++ b/ranger/colorschemes/__init__.py @@ -34,3 +34,7 @@ __all__ = get_all_modules(dirname(__file__)) """) from ranger.colorschemes import * +try: + from colorschemes import * +except ImportError: + pass |