Python 3.4 compatability.

This commit is contained in:
Michael Lazar
2015-02-02 23:46:47 -08:00
parent c9c38dc264
commit cafc08dafa
6 changed files with 38 additions and 23 deletions

View File

@@ -204,7 +204,7 @@ class BasePage(object):
attribute |= attr
n_rows, _ = window.getmaxyx()
for row in xrange(n_rows):
for row in range(n_rows):
window.chgat(row, 0, 1, attribute)
window.refresh()