summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--urwid/raw_display.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urwid/raw_display.py b/urwid/raw_display.py
index a3d14a0..4853a83 100644
--- a/urwid/raw_display.py
+++ b/urwid/raw_display.py
@@ -745,7 +745,7 @@ class Screen(BaseScreen, RealTerminal):
cy = 0
for row in r.content():
y += 1
- if False and osb and osb[y] == row:
+ if osb and osb[y] == row:
# this row of the screen buffer matches what is
# currently displayed, so we can skip this line
sb.append( osb[y] )