2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-22 12:09:02 +00:00

fix: incorrect import statement

use six.moves instead of six
This commit is contained in:
Chinmay Pai 2019-12-15 13:45:17 +05:30 committed by GitHub
parent d2d577201d
commit 459432b195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ from bench.utils import (update_bench, validate_upgrade, pre_upgrade, post_upgra
update_requirements, update_node_packages, backup_all_sites, patch_sites, build_assets,
restart_supervisor_processes, restart_systemd_processes)
from bench import patches
from six import reload_module
from six.moves import reload_module
@click.command('update')