Skip to content

Commit

Permalink
fix: importing reload caused issues in python2
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarvora committed Jan 29, 2019
1 parent 4d02801 commit 47a9aca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
8 changes: 5 additions & 3 deletions bench/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,12 +379,14 @@ def switch_branch(branch, apps=None, bench_path='.', upgrade=False, check_upgrad
print("Successfully switched branches for:\n" + "\n".join(switched_apps))

if version_upgrade[0] and upgrade:
if sys.version_info >= (3, 4):
from importlib import reload
reload(utils)
update_requirements()
update_node_packages()
pre_upgrade(version_upgrade[1], version_upgrade[2])
if sys.version_info >= (3, 4):
+ import importlib
importlib.reload(utils)
else:
reload(utils)
backup_all_sites()
patch_sites()
build_assets()
Expand Down
11 changes: 7 additions & 4 deletions bench/commands/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,16 @@ def _update(pull=False, patch=False, build=False, update_bench=False, auto=False
update_node_packages(bench_path=bench_path)

if version_upgrade[0] or (not version_upgrade[0] and force):
if sys.version_info >= (3, 4):
from importlib import reload
pre_upgrade(version_upgrade[1], version_upgrade[2], bench_path=bench_path)
import bench.utils, bench.app
print('Reloading bench...')
reload(bench.utils)
reload(bench.app)
if sys.version_info >= (3, 4):
+ import importlib
importlib.reload(bench.utils)
importlib.reload(bench.app)
else:
reload(bench.utils)
reload(bench.app)

if patch:
if not no_backup:
Expand Down

0 comments on commit 47a9aca

Please sign in to comment.