summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel <quite@hack.org>2012-03-14 15:57:03 +0100
committerDaniel <quite@hack.org>2012-03-15 11:04:00 +0100
commit3bbcbc1d64dd74c2e424423615e5b9652fa08fa4 (patch)
treedff9434b721e7d57e52b0a7c4190b45f4c06f9f7
parent746075034b22de8c92f6655a637481f925659acf (diff)
We're not going to fallback some default bindings anymore
-rw-r--r--alot/settings/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/settings/__init__.py b/alot/settings/__init__.py
index 50916608..55d7ffc6 100644
--- a/alot/settings/__init__.py
+++ b/alot/settings/__init__.py
@@ -34,7 +34,7 @@ class SettingsManager(object):
theme_path = theme or os.path.join(DEFAULTSPATH, 'default.theme')
self._theme = Theme(theme_path)
- self._bindings = read_config(os.path.join(DEFAULTSPATH, 'bindings'))
+ self._bindings = ConfigObj()
self._config = ConfigObj()
self._accounts = None