From 97fe1cca47956893c68a20b97c9879af22fe73d0 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 16 Nov 2008 18:40:05 +0000 Subject: [PATCH] Get the value properly --- terminatorlib/prefs_profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/prefs_profile.py b/terminatorlib/prefs_profile.py index dffccd7c..ecaf56a1 100644 --- a/terminatorlib/prefs_profile.py +++ b/terminatorlib/prefs_profile.py @@ -78,7 +78,7 @@ class ProfileEditor: return self.term.conf.__getattr__(key) except AttributeError: try: - return self.term.conf.keybindings.__getattr(key) + return self.term.conf.keybindings[key] except AttributeError: pass