aboutsummaryrefslogtreecommitdiff
path: root/gkeys
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2015-01-02 03:15:55 -0800
committerBrian Dolbec <dolsen@gentoo.org>2015-01-03 10:21:23 -0800
commit208ff99d47a96ea4b998f22ef67bd2b2eace6d10 (patch)
tree18a34ed18151719251897e026a92b7b675a0548c /gkeys
parentgkeys/base.py: Correct the option help messages (diff)
downloadgentoo-keys-208ff99d47a96ea4b998f22ef67bd2b2eace6d10.tar.gz
gentoo-keys-208ff99d47a96ea4b998f22ef67bd2b2eace6d10.tar.bz2
gentoo-keys-208ff99d47a96ea4b998f22ef67bd2b2eace6d10.zip
gkeys/actions.py: Eliminate possible handler not defined error
Diffstat (limited to 'gkeys')
-rw-r--r--gkeys/gkeys/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py
index 10978fe..1b22b2c 100644
--- a/gkeys/gkeys/actions.py
+++ b/gkeys/gkeys/actions.py
@@ -911,6 +911,6 @@ class Actions(object):
for cat in list(keys):
msgs.append("Category.....: %s" % cat)
msgs.append(keys[cat])
- del keys, cat, handler
+ del keys, cat
return (True, msgs)