In the file lernid/IrcBackend:
def is_moderated(self): try: return bool(self._chan[PROPERTIES_INTERFACE].GetProperties([3])[0][1]) except Exception, e: logging.debug('could not acess "moderated" property: {0}'.format(e)) return False
Shouldnt the property be called by name not by index? I don't have precise yet so i can't tell what the problem might be.
In the file lernid/IrcBackend:
def is_moderated(self): _chan[PROPERTIE S_INTERFACE] .GetProperties( [3])[0] [1])
logging. debug(' could not acess "moderated" property: {0}'.format(e))
try:
return bool(self.
except Exception, e:
return False
Shouldnt the property be called by name not by index? I don't have precise yet so i can't tell what the problem might be.