diff options
author | hut <hut@lavabit.com> | 2010-10-04 21:23:10 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-10-04 21:23:10 +0200 |
commit | b514d28d25e24c674058342e61bd6678ba24c21f (patch) | |
tree | 44b340f942547fcc31edd7e95ccd5e75b72c579c | |
parent | e30d1c7860c9017f8485f35130e65eb7f60ceda8 (diff) | |
download | ranger-b514d28d25e24c674058342e61bd6678ba24c21f.tar.gz |
gui.color: fixed ranger.gui.color.remove_attr
-rw-r--r-- | ranger/gui/color.py | 2 |
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 |