First time using jira-python, and I get this error when I run just a simple initialization.
from jira.client import JIRA jira = JIRA()
File "C:\Python32\lib\site-packages\jira\resources.py", line 146
if re.search(u"^User '(.*)' was not found in the system\.", error, re.U):
SyntaxError: invalid syntax
Any ideas?
options = { 'server': 'https://jira.myserver.mysite.com', 'verify': False }
jira = JIRA(options, basic_auth=(username,password))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.