This is an automated email from the ASF dual-hosted git repository.

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 16460d3  ARROW-4173: Fix JIRA library name in error message
16460d3 is described below

commit 16460d3b90f194c1212ec0b709b2a8171360ef54
Author: Kouhei Sutou <k...@clear-code.com>
AuthorDate: Mon Jan 7 10:32:00 2019 +0100

    ARROW-4173: Fix JIRA library name in error message
    
    Author: Kouhei Sutou <k...@clear-code.com>
    
    Closes #3326 from kou/dev-fix-jira-library-name and squashes the following 
commits:
    
    a16654dc <Kouhei Sutou> Fix JIRA library name in error message
---
 dev/merge_arrow_pr.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/merge_arrow_pr.py b/dev/merge_arrow_pr.py
index 3d6ca31..5a926f5 100755
--- a/dev/merge_arrow_pr.py
+++ b/dev/merge_arrow_pr.py
@@ -47,8 +47,8 @@ import six
 try:
     import jira.client
 except ImportError:
-    print("Could not find jira-python library. "
-          "Run 'sudo pip install jira-python' to install.")
+    print("Could not find jira library. "
+          "Run 'sudo pip install jira' to install.")
     print("Exiting without trying to close the associated JIRA.")
     sys.exit(1)
 

Reply via email to