Changeset 479
- Timestamp:
- 03/15/07 08:10:11 (17 months ago)
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/newnet/mucous/pymucous/MucousChatRooms.py
r478 r479 1169 1169 # Normal user chat 1170 1170 pre = " [" 1171 tw.addstr(pre , curses.A_BOLD | self.mucous.colors["black"])1171 tw.addstr(pre) 1172 1172 length += len(timestamp) + len(pre) 1173 1173 … … 1188 1188 suf = "] " 1189 1189 length += len(suf) 1190 tw.addstr(suf , curses.A_BOLD | self.mucous.colors["black"])1190 tw.addstr(suf) 1191 1191 if mtype == "Mentioned": 1192 1192 x = message.split(" ") -
museek+/trunk/sources/mucous/pymucous/MucousChatRooms.py
r478 r479 1169 1169 # Normal user chat 1170 1170 pre = " [" 1171 tw.addstr(pre , curses.A_BOLD | self.mucous.colors["black"])1171 tw.addstr(pre) 1172 1172 length += len(timestamp) + len(pre) 1173 1173 … … 1188 1188 suf = "] " 1189 1189 length += len(suf) 1190 tw.addstr(suf , curses.A_BOLD | self.mucous.colors["black"])1190 tw.addstr(suf) 1191 1191 if mtype == "Mentioned": 1192 1192 x = message.split(" ")
