commit: 50670d9212b29b27192f3e951d680391e0fbd70a
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 11 17:21:35 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Feb 11 17:30:27 2015 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=50670d92
gkeys/actions.py: Remove result from del list, it's not always defined
---
gkeys/gkeys/actions.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py
index 3852372..0a30679 100644
--- a/gkeys/gkeys/actions.py
+++ b/gkeys/gkeys/actions.py
@@ -953,7 +953,7 @@ class Actions(object):
if isinstance(result, GKEY):
keys[cat].append(result)
if data_only:
- del found, cat, result, handler
+ del found, cat, handler
return keys
msgs = []
for cat in list(keys):