From 4c7a470dc87686b724d9cfd67b6cb365156021ce Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 10 Dec 2014 22:26:19 +0100 Subject: Do not list __init__.py in /theme completion --- src/core/completions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') diff --git a/src/core/completions.py b/src/core/completions.py index 612144f6..c398e886 100644 --- a/src/core/completions.py +++ b/src/core/completions.py @@ -57,7 +57,7 @@ def completion_theme(self, the_input): except OSError as e: log.error('Completion for /theme failed', exc_info=True) return - theme_files = [name[:-3] for name in names if name.endswith('.py')] + theme_files = [name[:-3] for name in names if name.endswith('.py') and name != '__init__.py'] if not 'default' in theme_files: theme_files.append('default') return the_input.new_completion(theme_files, 1, '', quotify=False) -- cgit v1.2.3