Add missing __all__ to libcloud.storage.base module.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/b56f9018 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/b56f9018 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/b56f9018 Branch: refs/heads/trunk Commit: b56f90182e4d0b4b4c6cb5505b473a316c6b911f Parents: cff3adf Author: Tomaz Muraus <[email protected]> Authored: Sun Nov 17 20:23:50 2013 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Sun Nov 17 20:23:50 2013 +0100 ---------------------------------------------------------------------- libcloud/storage/base.py | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/b56f9018/libcloud/storage/base.py ---------------------------------------------------------------------- diff --git a/libcloud/storage/base.py b/libcloud/storage/base.py index b99f4be..35c49b2 100644 --- a/libcloud/storage/base.py +++ b/libcloud/storage/base.py @@ -35,6 +35,12 @@ from libcloud.storage.types import ObjectDoesNotExistError CHUNK_SIZE = 8096 +__all__ = [ + 'Object', + 'Contaner', + 'StorageDriver' +] + class Object(object): """
