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)
id='n120' href='#n120'>120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164