Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions dev/merge_arrow_pr.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -42,9 +42,6 @@
import requests
import getpass

from six.moves import input
import six

try:
import jira.client
import jira.exceptions
Expand DownExpand Up@@ -76,7 +73,7 @@ def get_json(url, headers=None):


def run_cmd(cmd):
if isinstance(cmd, six.string_types):
if isinstance(cmd, str):
cmd = cmd.split(' ')

try:
Expand All@@ -90,7 +87,7 @@ def run_cmd(cmd):
print('--------------')
raise e

if isinstance(output, six.binary_type):
if isinstance(output, bytes):
output = output.decode('utf-8')
return output

Expand Down
1 change: 0 additions & 1 deletion dev/requirements_merge_arrow_pr.txt
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
jira
requests
six