Client find_user methods need to URL quote the query parameter.

In processing a GET such as GET /3.1/users/find?q=mark+junk, Falcon will unquote_plus the query parameter, thus losing the +. To work around this, the find methods should URL quote the query.

See postorius#555 (closed).