Updating local imports (relative -> absolute)
diff --git a/googleapiclient/discovery.py b/googleapiclient/discovery.py
index a6180f8..4e5787f 100644
--- a/googleapiclient/discovery.py
+++ b/googleapiclient/discovery.py
@@ -46,10 +46,10 @@
 
 # Third-party imports
 import httplib2
-from . import mimeparse
 import uritemplate
 
 # Local imports
+from googleapiclient import mimeparse
 from googleapiclient.errors import HttpError
 from googleapiclient.errors import InvalidJsonError
 from googleapiclient.errors import MediaUploadSizeError
diff --git a/googleapiclient/http.py b/googleapiclient/http.py
index 160cb45..1638125 100644
--- a/googleapiclient/http.py
+++ b/googleapiclient/http.py
@@ -33,7 +33,6 @@
 import httplib2
 import json
 import logging
-from . import mimeparse
 import mimetypes
 import os
 import random
@@ -45,13 +44,15 @@
 from email.mime.multipart import MIMEMultipart
 from email.mime.nonmultipart import MIMENonMultipart
 from email.parser import FeedParser
-from .errors import BatchError
-from .errors import HttpError
-from .errors import InvalidChunkSizeError
-from .errors import ResumableUploadError
-from .errors import UnexpectedBodyError
-from .errors import UnexpectedMethodError
-from .model import JsonModel
+
+from googleapiclient import mimeparse
+from googleapiclient.errors import BatchError
+from googleapiclient.errors import HttpError
+from googleapiclient.errors import InvalidChunkSizeError
+from googleapiclient.errors import ResumableUploadError
+from googleapiclient.errors import UnexpectedBodyError
+from googleapiclient.errors import UnexpectedMethodError
+from googleapiclient.model import JsonModel
 from oauth2client import util
 
 
diff --git a/googleapiclient/model.py b/googleapiclient/model.py
index 2402d84..c598154 100644
--- a/googleapiclient/model.py
+++ b/googleapiclient/model.py
@@ -30,7 +30,7 @@
 from six.moves.urllib.parse import urlencode
 
 from googleapiclient import __version__
-from .errors import HttpError
+from googleapiclient.errors import HttpError
 
 
 dump_request_response = False