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
None as you are on OnDemand. Otherwise you could have written a custom email handler - https://developer.atlassian.com/display/JIRADEV/Plugin+Tutorial+-+Writing+a+Custom+Message+(Mail)+Handler+for+JIRA
(I am assuming that the Device X - Incident Y has nothing to do with the JIRA issue keys and you required a kind of mapping between this string and an actual JIRA issue)
That's pretty much waht I figured. And yes, you are correct, the Device X - Incident Y syntax is generated by the external system with which I am interfacing. I've been reading up on writing a custom message handler, but suspected I might run into a problem since we are using the on-demand platform. Looks like I'm going to have to code a custom pre-processing solution. Thanks for the swift reply!
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.