about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-10-04 21:23:10 +0200
committerhut <hut@lavabit.com>2010-10-10 02:51:27 +0200
commit52cf9f19b3738d42878cb35f4eb88a6f0775ea89 (patch)
treebe57608b81db5c6ceebaf9f921a78bd7f50e80b8
parent3f4deafd9a0dea2078fc4b621d558641cf39382e (diff)
downloadranger-52cf9f19b3738d42878cb35f4eb88a6f0775ea89.tar.gz
gui.color: fixed ranger.gui.color.remove_attr
-rw-r--r--ranger/gui/color.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/color.py b/ranger/gui/color.py
index 69f67eba..58f0b38a 100644
--- a/ranger/gui/color.py
+++ b/ranger/gui/color.py
@@ -62,7 +62,7 @@ invisible  = curses.A_INVIS
 
 default_colors = (default, default, normal)
 
-def remove_attr(integer, attr):
+def remove_attr(integer, attribute):
 	"""Remove an attribute from an integer"""
 	if integer & attribute:
 		return integer ^ attribute