Skip to content

Commit

Permalink
Fix install jira-python
Browse files Browse the repository at this point in the history
jira-pytyhon package should be installed by

  sudo pip install jira

cc pwendell

Author: Davies Liu <davies@databricks.com>

Closes apache#6367 from davies/fix_jira_python2 and squashes the following commits:

fbb3c8e [Davies Liu] Fix install jira-python
  • Loading branch information
Davies Liu committed May 23, 2015
1 parent be47af1 commit a4df0f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/create-release/releaseutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from jira.exceptions import JIRAError
except ImportError:
print "This tool requires the jira-python library"
print "Install using 'sudo pip install jira-python'"
print "Install using 'sudo pip install jira'"
sys.exit(-1)

try:
Expand Down
2 changes: 1 addition & 1 deletion dev/github_jira_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import jira.client
except ImportError:
print "This tool requires the jira-python library"
print "Install using 'sudo pip install jira-python'"
print "Install using 'sudo pip install jira'"
sys.exit(-1)

# User facing configs
Expand Down
2 changes: 1 addition & 1 deletion dev/merge_spark_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def main():
print "JIRA_USERNAME and JIRA_PASSWORD not set"
print "Exiting without trying to close the associated JIRA."
else:
print "Could not find jira-python library. Run 'sudo pip install jira-python' to install."
print "Could not find jira-python library. Run 'sudo pip install jira' to install."
print "Exiting without trying to close the associated JIRA."

if __name__ == "__main__":
Expand Down

0 comments on commit a4df0f2

Please sign in to comment.