The 3rd argument for GoogleDNSConnection is secure, not scope. 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/f1c42527 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/f1c42527 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/f1c42527 Branch: refs/heads/trunk Commit: f1c42527b2d8994035832b84da8c782ea91c9484 Parents: b21041c Author: Franck Cuny <[email protected]> Authored: Sun Oct 19 22:47:40 2014 -0700 Committer: Tomaz Muraus <[email protected]> Committed: Thu Oct 23 16:15:29 2014 +0800 ---------------------------------------------------------------------- libcloud/dns/drivers/google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/f1c42527/libcloud/dns/drivers/google.py ---------------------------------------------------------------------- diff --git a/libcloud/dns/drivers/google.py b/libcloud/dns/drivers/google.py index 15b5859..01721eb 100644 --- a/libcloud/dns/drivers/google.py +++ b/libcloud/dns/drivers/google.py @@ -70,7 +70,7 @@ class GoogleDNSDriver(DNSDriver): if not self.project: raise ValueError('Project name must be specified using ' '"project" keyword.') - super(GoogleDNSDriver, self).__init__(user_id, key, scopes, **kwargs) + super(GoogleDNSDriver, self).__init__(user_id, key, **kwargs) def iterate_zones(self): """
