Switched unicode to be the default mode.

This commit is contained in:
Michael Lazar
2015-05-12 23:42:31 -07:00
parent a23561e8f5
commit bf2d464081
5 changed files with 15 additions and 15 deletions

View File

@@ -477,8 +477,7 @@ class BasePage(object):
username = self.reddit.user.name
s_col = (n_cols - textual_width(username) - 1)
# Only print username if it fits in the empty space on the right
if (s_col - 1) >= len(sub_name):
n = (n_cols - s_col - 1)
if (s_col - 1) >= textual_width(sub_name):
add_line(self._header_window, username, 0, s_col)
self._header_window.refresh()