Skip to content
Snippets Groups Projects
Commit 9459137f authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Just sprintf the 'kind' argument into uri directly

parent 1294d4a3
No related branches found
No related tags found
No related merge requests found
......@@ -106,10 +106,8 @@ class ApplicationServiceApi(SimpleHttpClient):
@defer.inlineCallbacks
def query_3pe(self, service, kind, protocol, fields):
if kind == ThirdPartyEntityKind.USER:
fragment = "user"
required_field = "userid"
elif kind == ThirdPartyEntityKind.LOCATION:
fragment = "location"
required_field = "alias"
else:
raise ValueError(
......@@ -119,7 +117,7 @@ class ApplicationServiceApi(SimpleHttpClient):
uri = "%s%s/thirdparty/%s/%s" % (
service.url,
APP_SERVICE_PREFIX,
fragment,
kind,
urllib.quote(protocol)
)
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment