summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-31 20:38:19 +0100
committerhut <hut@lavabit.com>2009-12-31 20:38:19 +0100
commit4365df83d685ac4d27c6453eeef3baf27620dc7e (patch)
tree792fb452eca208c22a0484b6c446f20ad32f22b2 /ranger
parent77f59786a39d86680533c9b5709170f008e91ac4 (diff)
downloadranger-4365df83d685ac4d27c6453eeef3baf27620dc7e.tar.gz
cleanup
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/curses_shortcuts.py2
-rw-r--r--ranger/gui/displayable.py1
2 files changed, 0 insertions, 3 deletions
diff --git a/ranger/gui/curses_shortcuts.py b/ranger/gui/curses_shortcuts.py
index 3d85f697..b85a2de9 100644
--- a/ranger/gui/curses_shortcuts.py
+++ b/ranger/gui/curses_shortcuts.py
@@ -12,8 +12,6 @@ class CursesShortcuts(SettingsAware):
 	addstr(*args) -- failsafe version of self.win.addstr(*args)
 	"""
 
-	colorscheme = None
-
 	def addstr(self, *args):
 		try:
 			self.win.addstr(*args)
diff --git a/ranger/gui/displayable.py b/ranger/gui/displayable.py
index 8ec8e10e..838de3fb 100644
--- a/ranger/gui/displayable.py
+++ b/ranger/gui/displayable.py
@@ -33,7 +33,6 @@ class Displayable(EnvironmentAware, FileManagerAware, CursesShortcuts):
 		need_redraw -- Should the widget be redrawn? This variable may
 			be set at various places in the script and should eventually be
 			handled (and unset) in the draw() method.
-		colorscheme -- The colorscheme object.
 	
 	Read-Only: (i.e. reccomended not to change manually)
 		win -- the own curses window object
#n176'>176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295