(self, sender)
| 457 | return watchers |
| 458 | |
| 459 | def getPersistentRooms(self, sender): |
| 460 | persistentRooms = [] |
| 461 | for room in self._rooms.values(): |
| 462 | if room.isPersistent(): |
| 463 | persistentRooms.append(room.getName()) |
| 464 | return persistentRooms |
| 465 | |
| 466 | def getEmptyPersistentRooms(self): |
| 467 | emptyPersistentRooms = [] |
nothing calls this directly
no test coverage detected