Skip to content

Commit eadb433

Browse files
committed
Fix get_comment endpoint
1 parent 48c8bd0 commit eadb433

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frameioclient/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def get_comment(self, comment_id, **kwargs):
277277
:Args:
278278
comment_id (string): The comment id.
279279
"""
280-
endpoint = '/comments/{id}'.format(comment_id)
280+
endpoint = '/comments/{}'.format(comment_id)
281281
return self._api_call('get', endpoint, **kwargs)
282282

283283
def get_comments(self, asset_id, **kwargs):

0 commit comments

Comments
 (0)