summaryrefslogtreecommitdiff
path: root/alot/completion/stringlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/completion/stringlist.py')
-rw-r--r--alot/completion/stringlist.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/completion/stringlist.py b/alot/completion/stringlist.py
index 9d7fa3d3..c69a385f 100644
--- a/alot/completion/stringlist.py
+++ b/alot/completion/stringlist.py
@@ -20,6 +20,8 @@ class StringlistCompleter(Completer):
self.flags = re.IGNORECASE if ignorecase else 0
self.match_anywhere = match_anywhere
+ super().__init__()
+
def complete(self, original, pos):
pref = original[:pos]