From 814de48d664231311228293a12db7977e9f411b4 Mon Sep 17 00:00:00 2001 From: Jonathan Coveney Date: Thu, 2 Mar 2017 12:59:47 -0500 Subject: [PATCH 1/2] Fix whitespace issue --- apitools/base/py/batch_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apitools/base/py/batch_test.py b/apitools/base/py/batch_test.py index d684b25d..bd9b120e 100644 --- a/apitools/base/py/batch_test.py +++ b/apitools/base/py/batch_test.py @@ -153,6 +153,7 @@ def testSingleRequestInBatch(self): desired_url = 'https://www.example.com' callback_was_called = [] + def _Callback(response, exception): self.assertEqual({'status': '200'}, response.info) self.assertEqual('content', response.content) From 1baacc65b1e80d92e2756f658481f2f62143bf98 Mon Sep 17 00:00:00 2001 From: Jonathan Coveney Date: Thu, 2 Mar 2017 12:43:09 -0500 Subject: [PATCH 2/2] Update from 0.5.7 to 0.5.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 23e1a9c1..b49ae0c3 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ if py_version < '2.7': REQUIRED_PACKAGES.append('argparse>=1.2.1') -_APITOOLS_VERSION = '0.5.7' +_APITOOLS_VERSION = '0.5.8' with open('README.rst') as fileobj: README = fileobj.read()