From 565cc321b9ec5cfb991a7715135014c09977bb08 Mon Sep 17 00:00:00 2001 From: Kiooeht Date: Tue, 7 Jun 2011 12:36:25 -0700 Subject: [PATCH] Bug fix: Don't register +b in memo modes --- memos.py | 2 +- version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/memos.py b/memos.py index dec1888..8007874 100644 --- a/memos.py +++ b/memos.py @@ -962,7 +962,7 @@ class PesterMemo(PesterConvo): icon = QtGui.QIcon() c.setIcon(icon) self.sortUsers() - elif c == self.channel and update[0] in ["+","-"]: + elif c == self.channel and h == "" and update[0] in ["+","-"]: self.updateChanModes(update) @QtCore.pyqtSlot() diff --git a/version.py b/version.py index 1e2e5a3..976fd5e 100644 --- a/version.py +++ b/version.py @@ -10,7 +10,7 @@ _pcStatus = "B" # A = alpha # B = beta # RC = release candidate # None = public release -_pcRevision = "3" +_pcRevision = "4" _pcVersion = "" def pcVerCalc():