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.
Discover how Atlassian is revolutionizing service management with cutting-edge solutions for AI-powered support, HR Service Management, or DevOps connectivity.
Register here ⬇️Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.