summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-08 04:44:21 +0200
committerhut <hut@lavabit.com>2011-10-08 04:44:21 +0200
commit8a80977137c18d9ba25d399287d16492bc2b5e69 (patch)
treea4b1c9b82cd1581089d459e29c36ce25145aa832
parent5157a041749fd3c43c0376ef375aca176da2d7ef (diff)
downloadranger-8a80977137c18d9ba25d399287d16492bc2b5e69.tar.gz
core.action: removed debugging code from dump_keybindings
-rw-r--r--ranger/core/actions.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index be989b18..58edc56a 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -784,10 +784,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 				if isinstance(value, dict):
 					recurse(keys, value)
 				else:
-					try:
-						write("%12s %s\n" % (construct_keybinding(keys), value))
-					except:
-						write("olo\n")
+					write("%12s %s\n" % (construct_keybinding(keys), value))
 
 		for context in contexts:
 			write("Keybindings in `%s'\n" % context)