From 086de1b5089e630af45ab44a9e7bba4a47ed31fe Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 2 Oct 2014 21:59:31 +0200 Subject: [PATCH] Rename cmd_history to cmd-history. For consistency with the other stuff, why not. Also we broke that file with the last commit anyways. --- qutebrowser/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/config.py b/qutebrowser/config/config.py index 25561091f..5dd9636d3 100644 --- a/qutebrowser/config/config.py +++ b/qutebrowser/config/config.py @@ -131,7 +131,7 @@ def init(args): # We need to import this here because lineparser needs config. from qutebrowser.config import lineparser command_history = lineparser.LineConfigParser( - datadir, 'cmd_history', ('completion', 'history-length')) + datadir, 'cmd-history', ('completion', 'history-length')) objreg.register('command-history', command_history)