summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-28 19:15:31 +0200
committerhut <hut@lavabit.com>2010-03-28 19:16:47 +0200
commit1b360fbabaeb042cd0fdd1bbf5ed814d1b1e7c11 (patch)
tree31077248466d3579de1d716bcf57a27b266daa85
parentc9e7def2206e3f77281e77dd75f9f01bf16233c7 (diff)
downloadranger-1b360fbabaeb042cd0fdd1bbf5ed814d1b1e7c11.tar.gz
colorschemes.default: *slight* performance improvement
-rw-r--r--ranger/colorschemes/default.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/colorschemes/default.py b/ranger/colorschemes/default.py
index 44422262..25bf8e82 100644
--- a/ranger/colorschemes/default.py
+++ b/ranger/colorschemes/default.py
@@ -21,7 +21,7 @@ class Default(ColorScheme):
 		fg, bg, attr = default_colors
 
 		if context.reset:
-			pass
+			return default_colors
 
 		elif context.in_browser:
 			if context.selected:
href='#n124'>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 165 166 167