Skip to content

Instantly share code, notes, and snippets.

@viktor-evdokimov
Forked from waldronj/gist:6345549
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viktor-evdokimov/5822e960dacbbfe9c742 to your computer and use it in GitHub Desktop.
Save viktor-evdokimov/5822e960dacbbfe9c742 to your computer and use it in GitHub Desktop.
class PylonstestingController(BaseController):
jac = {'server': 'someSite'}
jira = JIRA(options=jac,basic_auth=('SomeUser', 'SomePassword'))
def index(self, id):
#jac = {'server': 'someSite'}
#jira = JIRA(options=jac,basic_auth=('SomeUser', 'SomePassword'))
searchString = 'project=' + id + '&status=open'
c.issues = jira.search_issues(searchString, maxResults=1000)
#c.issues = issues
return render('index.html')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment