From 3003e32bc857c0e9198f50d4aaeca537a72bea84 Mon Sep 17 00:00:00 2001 From: Max Goodman Date: Sat, 8 Oct 2011 00:24:25 -0700 Subject: [PATCH] Add missing responder argument to search_reddit_names. --- r2/r2/controllers/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/controllers/api.py b/r2/r2/controllers/api.py index 603a28041..f6951a003 100644 --- a/r2/r2/controllers/api.py +++ b/r2/r2/controllers/api.py @@ -2124,7 +2124,7 @@ class ApiController(RedditController): c.user._commit() @json_validate(query = VPrintable('query', max_length = 50)) - def POST_search_reddit_names(self, query): + def POST_search_reddit_names(self, responder, query): names = [] if query: names = search_reddits(query)