Skip to content

Commit

Permalink
Jira: add method get pugin info
Browse files Browse the repository at this point in the history
  • Loading branch information
gonchik committed May 24, 2022
1 parent c0ffdc2 commit 0550501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atlassian/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -2873,7 +2873,7 @@ def get_plugin_license_info(self, plugin_key):
Provide plugin license info
:return a json specific License query
"""
url = f"/rest/plugins/1.0/{plugin_key}-key/license"
url = "rest/plugins/1.0/{plugin_key}-key/license".format(plugin_key=plugin_key)
return self.get(url, headers=self.no_check_headers, trailing=True)

def upload_plugin(self, plugin_path):
Expand Down

0 comments on commit 0550501

Please sign in to comment.