2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00

Merge pull request #710 from sagarvora/patch-1

[python 3.7] async is a keyword => use is_async
This commit is contained in:
Ameya Shenoy 2018-08-27 10:51:13 +00:00 committed by GitHub
commit f969555835
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,8 +139,8 @@ def clone_apps_from(bench_path, clone_from, update_app=True):
def exec_cmd(cmd, cwd='.'):
from .cli import from_command_line
async = False if from_command_line else True
if async:
is_async = False if from_command_line else True
if is_async:
stderr = stdout = subprocess.PIPE
else:
stderr = stdout = None
@ -150,7 +150,7 @@ def exec_cmd(cmd, cwd='.'):
p = subprocess.Popen(cmd, cwd=cwd, shell=True, stdout=stdout, stderr=stderr,
universal_newlines=True)
if async:
if is_async:
return_code = print_output(p)
else:
return_code = p.wait()
@ -603,8 +603,8 @@ def run_frappe_cmd(*args, **kwargs):
f = get_env_cmd('python', bench_path=bench_path)
sites_dir = os.path.join(bench_path, 'sites')
async = False if from_command_line else True
if async:
is_async = False if from_command_line else True
if is_async:
stderr = stdout = subprocess.PIPE
else:
stderr = stdout = None
@ -612,7 +612,7 @@ def run_frappe_cmd(*args, **kwargs):
p = subprocess.Popen((f, '-m', 'frappe.utils.bench_helper', 'frappe') + args,
cwd=sites_dir, stdout=stdout, stderr=stderr)
if async:
if is_async:
return_code = print_output(p)
else:
return_code = p.wait()