Fix lint.

Thanks to @Carpetsmoker for spotting this in #705.
This commit is contained in:
Florian Bruhin 2015-06-18 08:09:45 +02:00
parent 59cdbd780c
commit c64d9520ff
2 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ def qute_help(win_id, request):
url=request.url().toDisplayString(),
error="This most likely means the documentation was not generated "
"properly. If you are running qutebrowser from the git "
"repository, please run scripts/asciidoc2html.py."
"repository, please run scripts/asciidoc2html.py. "
"If you're running a released version this is a bug, please "
"use :report to report it.",
icon='')

View File

@ -101,7 +101,7 @@ class CompletionView(QTreeView):
self.enabled = config.get('completion', 'show')
objreg.get('config').changed.connect(self.set_enabled)
# FIXME handle new aliases.
#objreg.get('config').changed.connect(self.init_command_completion)
# objreg.get('config').changed.connect(self.init_command_completion)
self._delegate = completiondelegate.CompletionItemDelegate(self)
self.setItemDelegate(self._delegate)