Repository: libcloud Updated Branches: refs/heads/trunk bb2896155 -> 0117a3d93
Fixed the documented return type. This function doesn't return a value. Closes #265 Signed-off-by: Tomaz Muraus <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/0117a3d9 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/0117a3d9 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/0117a3d9 Branch: refs/heads/trunk Commit: 0117a3d93da58c02bf7e721ee27aacdd3a361998 Parents: bb28961 Author: Alex Gaynor <[email protected]> Authored: Sat Mar 15 17:38:28 2014 -0700 Committer: Tomaz Muraus <[email protected]> Committed: Sun Mar 16 09:28:19 2014 +0100 ---------------------------------------------------------------------- libcloud/dns/base.py | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/0117a3d9/libcloud/dns/base.py ---------------------------------------------------------------------- diff --git a/libcloud/dns/base.py b/libcloud/dns/base.py index f0b1da6..0e3ac6f 100644 --- a/libcloud/dns/base.py +++ b/libcloud/dns/base.py @@ -422,9 +422,6 @@ class DNSDriver(BaseDriver): :param file_path: File path where the output will be saved. :type file_path: ``str`` - - :return: Zone data in BIND compatible format. - :rtype: ``str`` """ result = self.export_zone_to_bind_format(zone=zone)
