Merge pull request #79 from pferate/coveralls

Adding coveralls integration
diff --git a/googleapiclient/http.py b/googleapiclient/http.py
index 0dab8b8..2731e22 100644
--- a/googleapiclient/http.py
+++ b/googleapiclient/http.py
@@ -1252,9 +1252,6 @@
     if resp.status >= 300:
       raise HttpError(resp, content, uri=self._batch_uri)
 
-    # Now break out the individual responses and store each one.
-    boundary, _ = content.split(None, 1)
-
     # Prepend with a content-type header so FeedParser can handle it.
     header = 'content-type: %s\r\n\r\n' % resp['content-type']
     # PY3's FeedParser only accepts unicode. So we should decode content
diff --git a/samples/audit/audit.py b/samples/audit/audit.py
index 1595ddb..97f2773 100644
--- a/samples/audit/audit.py
+++ b/samples/audit/audit.py
@@ -50,8 +50,6 @@
       argv, 'audit', 'v1', __doc__, __file__,
       scope='https://www.googleapis.com/auth/apps/reporting/audit.readonly')
 
-  service = build('audit', 'v1', http=http)
-
   try:
     activities = service.activities()