mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix Digital Ocean inventory script pagination handling (#35153)
This commit is contained in:
parent
19ff2f4e8c
commit
a1639abd71
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ class DoManager:
|
||||||
|
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
sys.exit("Unable to parse result from %s: %s" % (url, e))
|
sys.exit("Unable to parse result from %s: %s" % (url, e))
|
||||||
return json_resp
|
return resp_data
|
||||||
|
|
||||||
def all_active_droplets(self):
|
def all_active_droplets(self):
|
||||||
resp = self.send('droplets/')
|
resp = self.send('droplets/')
|
||||||
|
|
Loading…
Reference in a new issue