From 69c2bca7b7bed698304d68a6b45d9ef3f600d53d Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 7 May 2009 01:44:59 +0100 Subject: [PATCH] call parent init, just to be safe --- terminatorlib/keybindings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/terminatorlib/keybindings.py b/terminatorlib/keybindings.py index 6c413e28..e1aa9656 100644 --- a/terminatorlib/keybindings.py +++ b/terminatorlib/keybindings.py @@ -5,6 +5,7 @@ from terminatorlib.config import err class KeymapError(Exception): def __init__(self, value): + Exception.__init__(self, value) self.value = value self.action = 'unknown'