KAFKA-1560 Make arguments to jira-python API more explicit in kafka-patch-review's get_jira(); reviewed by Neha Narkhede

This commit is contained in:
Jonathan Natkins 2014-08-14 17:46:12 -07:00 committed by Neha Narkhede
parent a552d4b743
commit caf256ad8c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ def get_jira():
}
jira_config = get_jira_config()
jira = JIRA(options,basic_auth=(jira_config['user'], jira_config['password']))
jira = JIRA(options=options,basic_auth=(jira_config['user'], jira_config['password']))
return jira
def cmd_exists(cmd):