Code typo fix 8^Y
This commit is contained in:
parent
23fe489c26
commit
06039ada59
1 changed files with 1 additions and 1 deletions
2
menus.py
2
menus.py
|
@ -1527,7 +1527,7 @@ class PesterUserlist(QtGui.QDialog):
|
|||
elif update == "left" and c == "#pesterchum":
|
||||
self.delUser(h)
|
||||
elif update == "join" and c == "#pesterchum":
|
||||
if str(self.searchbox.text()) == "" or n.lower().find(str(self.searchbox.text()).lower()) != -1:
|
||||
if str(self.searchbox.text()) == "" or h.lower().find(str(self.searchbox.text()).lower()) != -1:
|
||||
self.addUser(h)
|
||||
def addUser(self, name):
|
||||
item = QtGui.QListWidgetItem(name)
|
||||
|
|
Loading…
Reference in a new issue