From f685f3e31780a8a56de8c71a87d69ac70cb126de Mon Sep 17 00:00:00 2001 From: Thomas Hurst Date: Fri, 22 Aug 2008 06:45:31 +0100 Subject: [PATCH] source.keybindings -> source['keybindings'] now. --- terminatorlib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index e5200824..3959f712 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -154,7 +154,7 @@ class TerminatorConfig: self._keys = {} for source in reversed(self.sources): try: - val = source.keybindings + val = source['keybindings'] self._keys.update(val) except: pass