Repository: libcloud Updated Branches: refs/heads/trunk 9ebc0b49e -> 4d11ec272
Added property plan in DimensionDataNetworkDomain return Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/ff06265c Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/ff06265c Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/ff06265c Branch: refs/heads/trunk Commit: ff06265c4132b15b8818f795980a5ba04b8aeb22 Parents: 4c0bc38 Author: Samuel Chong <samuelcho...@gmail.com> Authored: Wed Oct 5 13:05:46 2016 +1100 Committer: Samuel Chong <samuelcho...@gmail.com> Committed: Wed Oct 5 13:05:46 2016 +1100 ---------------------------------------------------------------------- libcloud/common/dimensiondata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/ff06265c/libcloud/common/dimensiondata.py ---------------------------------------------------------------------- diff --git a/libcloud/common/dimensiondata.py b/libcloud/common/dimensiondata.py index 90a0728..45f2c5e 100644 --- a/libcloud/common/dimensiondata.py +++ b/libcloud/common/dimensiondata.py @@ -672,9 +672,9 @@ class DimensionDataNetworkDomain(object): def __repr__(self): return (('<DimensionDataNetworkDomain: id=%s, name=%s, ' - 'description=%s, location=%s, status=%s>') + 'description=%s, location=%s, status=%s, plan=%s>') % (self.id, self.name, self.description, self.location, - self.status)) + self.status, self.plan)) class DimensionDataPublicIpBlock(object):