Skip to content

Commit c25d60a

Browse files
committed
Renaming gcloud._localstack as gcloud._helpers.
This is in preparation for adding more core helper classes.
1 parent 8178991 commit c25d60a

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

gcloud/datastore/batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"""Create / interact with a batch of updates / deletes."""
1616

17-
from gcloud._localstack import _LocalStack
17+
from gcloud._helpers import _LocalStack
1818
from gcloud.datastore import _implicit_environ
1919
from gcloud.datastore import helpers
2020
from gcloud.datastore.key import _dataset_ids_equal

gcloud/storage/batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
import six
2727

28-
from gcloud._localstack import _LocalStack
28+
from gcloud._helpers import _LocalStack
2929
from gcloud.storage import _implicit_environ
3030
from gcloud.storage.connection import Connection
3131

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class Test__LocalStack(unittest2.TestCase):
1919

2020
def _getTargetClass(self):
21-
from gcloud._localstack import _LocalStack
21+
from gcloud._helpers import _LocalStack
2222

2323
return _LocalStack
2424

0 commit comments

Comments
 (0)