Refresh auto-generated docs
diff --git a/apiclient/http.py b/apiclient/http.py
index d091a86..4375c4a 100644
--- a/apiclient/http.py
+++ b/apiclient/http.py
@@ -806,13 +806,23 @@
Example:
from apiclient.http import BatchHttpRequest
- def list_animals(request_id, response):
+ def list_animals(request_id, response, exception):
\"\"\"Do something with the animals list response.\"\"\"
- pass
+ if exception is not None:
+ # Do something with the exception.
+ pass
+ else:
+ # Do something with the response.
+ pass
- def list_farmers(request_id, response):
+ def list_farmers(request_id, response, exception):
\"\"\"Do something with the farmers list response.\"\"\"
- pass
+ if exception is not None:
+ # Do something with the exception.
+ pass
+ else:
+ # Do something with the response.
+ pass
service = build('farm', 'v2')