diff --git a/picard/webservice.py b/picard/webservice.py index c97d1a804..b89e5d8ee 100644 --- a/picard/webservice.py +++ b/picard/webservice.py @@ -454,8 +454,8 @@ class XmlWebService(QtCore.QObject): priority=priority, important=important, refresh=refresh) def _find(self, entitytype, handler, - xml=True, priority=True, important=True, mblogin=False, - cacheloadcontrol=None, refresh=False, **kwargs): + xml=True, priority=True, important=True, mblogin=False, + cacheloadcontrol=None, refresh=False, **kwargs): host = config.setting["server_host"] port = config.setting["server_port"] filters = [] @@ -487,8 +487,8 @@ class XmlWebService(QtCore.QObject): queryargs[str(name)] = value path = "/ws/2/%s" % (entitytype) return self.get(host, port, path, handler, queryargs=queryargs, - xml=xml, priority=priority, important=important, mblogin=mblogin, - cacheloadcontrol=cacheloadcontrol, refresh=refresh) + xml=xml, priority=priority, important=important, mblogin=mblogin, + cacheloadcontrol=cacheloadcontrol, refresh=refresh) def find_releases(self, handler, **kwargs): return self._find('release', handler, **kwargs)