8000 Fix search_users URL · aromanovich/github3.py@49bba44 · GitHub
[go: up one dir, main page]

Skip to content

Commit 49bba44

Browse files
committed
Fix search_users URL
1 parent 7bc504a commit 49bba44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github3/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ def search_users(self, query, sort=None, order=None, per_page=None,
12521252
'Accept': 'application/vnd.github.v3.full.text-match+json'
12531253
}
12541254

1255-
url = self._build_url('search', 'repositories')
1255+
url = self._build_url('search', 'users')
12561256
return SearchIterator(number, url, UserSearchResult, self, params,
12571257
etag, headers)
12581258

0 commit comments

Comments
 (0)
0