You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2015/08/30 14:17:59 UTC

libcloud git commit: Default "extra" argument in update_record method in the base DNS API to None.

Repository: libcloud
Updated Branches:
  refs/heads/trunk f625732a9 -> 61bb1b52e


Default "extra" argument in update_record method in the base DNS API to None.


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

Branch: refs/heads/trunk
Commit: 61bb1b52efa7800bbdd325b51a9ea5085caf9964
Parents: f625732
Author: Tomaz Muraus <to...@apache.org>
Authored: Sun Aug 30 13:49:08 2015 +0200
Committer: Tomaz Muraus <to...@apache.org>
Committed: Sun Aug 30 13:49:08 2015 +0200

----------------------------------------------------------------------
 libcloud/dns/base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/61bb1b52/libcloud/dns/base.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/base.py b/libcloud/dns/base.py
index f09ccc1..b374ebc 100644
--- a/libcloud/dns/base.py
+++ b/libcloud/dns/base.py
@@ -328,7 +328,7 @@ class DNSDriver(BaseDriver):
         raise NotImplementedError(
             'create_record not implemented for this driver')
 
-    def update_record(self, record, name, type, data, extra):
+    def update_record(self, record, name, type, data, extra=None):
         """
         Update an existing record.