Repository: libcloud
Updated Branches:
  refs/heads/trunk d819d4edb -> 4d926bd3f


Fixed type in Container __repr__


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/4d926bd3
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/4d926bd3
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/4d926bd3

Branch: refs/heads/trunk
Commit: 4d926bd3f60154dc4e253d7dda096241ca8094c4
Parents: d819d4e
Author: anthony-shaw <anthony.p.s...@gmail.com>
Authored: Wed Feb 10 17:34:32 2016 +1100
Committer: anthony-shaw <anthony.p.s...@gmail.com>
Committed: Wed Feb 10 17:34:32 2016 +1100

----------------------------------------------------------------------
 libcloud/container/base.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/4d926bd3/libcloud/container/base.py
----------------------------------------------------------------------
diff --git a/libcloud/container/base.py b/libcloud/container/base.py
index ea41e50..0980041 100644
--- a/libcloud/container/base.py
+++ b/libcloud/container/base.py
@@ -77,8 +77,8 @@ class Container(object):
         return self.driver.destroy_container(container=self)
 
     def __repr__(self):
-        return ('<Container: id=%s, name=%s, provider=%s '
-                'state=%...>' %
+        return ('<Container: id=%s, name=%s,'
+                'state=%s, provider=%s ...>' %
                 (self.id, self.name, self.state,
                  self.driver.name))
 

Reply via email to