diff options
Diffstat (limited to 'calls.py')
-rw-r--r-- | calls.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -14,8 +14,8 @@ class EjabberdApiCalls(EjabberdApi): @property def nodename(self): if self._login is not None: - node_str = re.compile('The node \'(.*)\'') - status = self.cmd('status', {}) + node_str = re.compile("The node '(.*)'") + status = self.cmd("status", {}) # matches try: @@ -32,8 +32,8 @@ class EjabberdApiCalls(EjabberdApi): @property def verstring(self): if self._login is not None: - ver_str = re.compile('([1-9][0-9.]+(?![.a-z]))\\b') - status = self.cmd('status', {}) + ver_str = re.compile("([1-9][0-9.]+(?![.a-z]))\\b") + status = self.cmd("status", {}) # matches try: @@ -117,7 +117,7 @@ class EjabberdApiCalls(EjabberdApi): host = "global" if vhost is not None: if self.verstring.major >= 19: - host = '.'.join([muc_host, vhost]) + host = ".".join([muc_host, vhost]) else: host = vhost result = self.cmd("muc_online_rooms", {"host": host}) |