Skip to content

Commit b4e8395

Browse files
authored
Jira: Set trailing=True on get_plugins_info request. (#732)
1 parent 3ead004 commit b4e8395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/jira.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2383,7 +2383,7 @@ def get_plugins_info(self):
23832383
:return a json of installed plugins
23842384
"""
23852385
url = "rest/plugins/1.0/"
2386-
return self.get(url, headers=self.no_check_headers)
2386+
return self.get(url, headers=self.no_check_headers, trailing=True)
23872387

23882388
def upload_plugin(self, plugin_path):
23892389
"""

0 commit comments

Comments
 (0)