You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi all,
I want to get all boards from Jira and found method with python, but something get wrong. Who try this kind of method please help
from jira.client import JIRAfrom jira.client
import GreenHopperimport logging
import refrom .rest_client
import AtlassianRestAPI
options = {'server': 'http://localhost/'}
jira = JIRA(options, basic_auth=('username', 'password'))
gh = GreenHopper(options)
def get_agile_board_configuration(self, board_id)
url = 'rest/agile/1.0/board/{}/configuration'.format(str(board_id))
return self.get(url)
I get this error.
File "board.py", line 11
def get_agile_board_configuration(self, board_id)
IndentationError: unexpected indent
Code I get from github
https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L984
Thanks in advance,
regards,
Alik
Delete the first "space" character at the start at line 11 - before "def ".
And as I see from the copied script you should add 2 or 4 spaces at the start of next line (starting with "url = ") and the same spaces to the last line (starts with "return ")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.