Skip to content

Commit d17fc49

Browse files
authored
Merge pull request #109 from nazywam/bugfix/async-query-typo
Fix `aio_do_query` recursion typo
2 parents 869089f + 6b53b81 commit d17fc49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncwhois/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ async def _aio_do_query(
193193
whois_server = self._find_match(regex, query_output)
194194
if self._continue_querying(server, whois_server):
195195
# recursive call to find more authoritative server
196-
chain = self._do_query(
196+
chain = await self._aio_do_query(
197197
whois_server, data, self.whois_server_regex, chain
198198
)
199199
# return the WHOIS query chain

0 commit comments

Comments
 (0)