Skip to content

Commit 4e3b2f2

Browse files
author
Aaron Sierra
committed
dns: zonomi: Drop redundant api_key in list_zones()
The API key is automatically inserted into the request by the ZonomiConnection class.
1 parent 8fa0b79 commit 4e3b2f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libcloud/dns/drivers/zonomi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def list_zones(self):
5454
:return: ``list`` of :class:`Zone`
5555
"""
5656
action = "/app/dns/dyndns.jsp?"
57-
params = {"action": "QUERYZONES", "api_key": self.key}
57+
params = {"action": "QUERYZONES"}
5858

5959
response = self.connection.request(action=action, params=params)
6060
zones = self._to_zones(response.objects)

0 commit comments

Comments
 (0)