Skip to content

Commit 5c9987c

Browse files
committed
Fix bad return on RequestError
1 parent 1f217fa commit 5c9987c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

umapi_client/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def query_multiple(self, object_type, page=0, url_params=None, query_params=None
308308
if re.result.status_code == 404:
309309
if self.logger: self.logger.debug("Ran %s query: %s %s (0 found)",
310310
object_type, url_params, query_params)
311-
return [], True
311+
return [], True, 0, 0, 0, 0
312312
else:
313313
raise re
314314

0 commit comments

Comments
 (0)