2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 07:28:25 +00:00

fix app.py

This commit is contained in:
Pratik Vyas 2014-09-05 09:28:55 +05:30
parent 725dced1c3
commit d631cc4997

View File

@ -50,7 +50,7 @@ def pull_all_apps(bench='.'):
for app in apps:
app_dir = os.path.join(apps_dir, app)
if os.path.exists(os.path.join(app_dir, '.git')):
logger.info('pulling {}'.format(app))
logger.info('pulling {0}'.format(app))
exec_cmd("git pull {rebase} upstream HEAD".format(rebase=rebase), cwd=app_dir)
def install_apps_from_path(path, bench='.'):