Fix implementation of /admin/whois

This commit is contained in:
Daniel Wagner-Hall 2015-12-02 17:27:49 +00:00
parent f721fdbf87
commit 526bc33e02
2 changed files with 11 additions and 17 deletions

View file

@ -26,7 +26,7 @@ logger = logging.getLogger(__name__)
class WhoisRestServlet(ClientV1RestServlet):
PATTERNS = client_path_patterns("/admin/whois/(?P<user_id>[^/]*)", releases=())
PATTERNS = client_path_patterns("/admin/whois/(?P<user_id>[^/]*)")
@defer.inlineCallbacks
def on_GET(self, request, user_id):