Skip to content

Commit f55ca5e

Browse files
authored
Forgot .format in previous method
1 parent 7844c0b commit f55ca5e

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
@@ -1340,7 +1340,7 @@ def get_agile_board_properties(self, board_id):
13401340
Gets a list of all the board properties
13411341
:param board_id: int, str
13421342
"""
1343-
url = 'rest/agile/1.0/board/{board_id}/properties'
1343+
url = 'rest/agile/1.0/board/{board_id}/properties'.format(board_id=board_id)
13441344
return self.get(url)
13451345

13461346
def health_check(self):

0 commit comments

Comments
 (0)