Skip to content

Commit 17bd64f

Browse files
committed
Removed trailing slash from request to retrieve all tags, as it no longer appears to be compatible with the API
1 parent 977129c commit 17bd64f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

digitalocean/Manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def get_all_tags(self):
215215
"""
216216
This method returns a list of all tags.
217217
"""
218-
data = self.get_data("tags/")
218+
data = self.get_data("tags")
219219
return [
220220
Tag(token=self.token, **tag) for tag in data['tags']
221221
]

0 commit comments

Comments
 (0)