Skip to content

Commit

Permalink
Fix up imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 2, 2014
1 parent 67b0601 commit f4a53ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions _gcloud_vendor/apitools/base/py/http_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

import httplib2

from apitools.base.py import exceptions
from apitools.base.py import util
from _gcloud_vendor.apitools.base.py import exceptions
from _gcloud_vendor.apitools.base.py import util

__all__ = [
'GetHttp',
Expand Down
6 changes: 3 additions & 3 deletions _gcloud_vendor/apitools/base/py/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import StringIO
import threading

from apitools.base.py import exceptions
from apitools.base.py import http_wrapper
from apitools.base.py import util
from _gcloud_vendor.apitools.base.py import exceptions
from _gcloud_vendor.apitools.base.py import http_wrapper
from _gcloud_vendor.apitools.base.py import util

__all__ = [
'Download',
Expand Down
2 changes: 1 addition & 1 deletion _gcloud_vendor/apitools/base/py/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import urllib
import urllib2

from apitools.base.py import exceptions
from _gcloud_vendor.apitools.base.py import exceptions

__all__ = [
'DetectGae',
Expand Down

0 comments on commit f4a53ee

Please sign in to comment.