diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-07-01 21:32:44 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-07-01 21:32:44 +0000 |
commit | 33c291c9a945da009ab6849855dc3c66ecc103fa (patch) | |
tree | e2381d3dd80c4487d58e454a1d3c3e6685683367 /src/window.py | |
parent | 450c234cd3c21032fe7dd10f754fbda0855ef2ac (diff) | |
download | poezio-33c291c9a945da009ab6849855dc3c66ecc103fa.tar.gz poezio-33c291c9a945da009ab6849855dc3c66ecc103fa.tar.bz2 poezio-33c291c9a945da009ab6849855dc3c66ecc103fa.tar.xz poezio-33c291c9a945da009ab6849855dc3c66ecc103fa.zip |
server on /join can be omitted, fixed #1525 Also reorganize various functions in common.py and update CHANGELOG
Diffstat (limited to 'src/window.py')
-rw-r--r-- | src/window.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/window.py b/src/window.py index 2ee52b5e..9b3d9ce1 100644 --- a/src/window.py +++ b/src/window.py @@ -17,7 +17,6 @@ # You should have received a copy of the GNU General Public License # along with Poezio. If not, see <http://www.gnu.org/licenses/>. - from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset, gettext as _) from os.path import isfile @@ -100,7 +99,7 @@ class UserList(Win): self.win.addnstr(y, 0, " ", 1) self.win.attroff(curses.color_pair(show_col)) self.win.attron(curses.color_pair(role_col)) - self.win.addnstr(y, 1, user.nick, self.width-2) + self.win.addnstr(y, 1, user.nick, self.width-1) self.win.attroff(curses.color_pair(role_col)) y += 1 if y == self.height: |