Looking at the code it seems like with recent changes to query_multiple() in the v2.15 release, the code path for 404 was forgotten.
The different number of return values eventually leads to a ValueError when trying to evaluate the lazy query. That occurs in _next_page() because it's attempting to unpack 6 values when only 2 are returned.
Looking at the code it seems like with recent changes to query_multiple() in the v2.15 release, the code path for 404 was forgotten.
The different number of return values eventually leads to a
ValueError
when trying to evaluate the lazy query. That occurs in _next_page() because it's attempting to unpack 6 values when only 2 are returned.