Added os.path.expanduser to app_path in django_manage
This commit is contained in:
parent
7f4f89abda
commit
afd0b3fcaa
1 changed files with 1 additions and 3 deletions
|
@ -232,8 +232,6 @@ def main():
|
||||||
if not module.params[param]:
|
if not module.params[param]:
|
||||||
module.fail_json(msg='%s param is required for command=%s' % (param, command))
|
module.fail_json(msg='%s param is required for command=%s' % (param, command))
|
||||||
|
|
||||||
venv = module.params['virtualenv']
|
|
||||||
|
|
||||||
_ensure_virtualenv(module)
|
_ensure_virtualenv(module)
|
||||||
|
|
||||||
cmd = "python manage.py %s" % (command, )
|
cmd = "python manage.py %s" % (command, )
|
||||||
|
@ -254,7 +252,7 @@ def main():
|
||||||
if module.params[param]:
|
if module.params[param]:
|
||||||
cmd = '%s %s' % (cmd, module.params[param])
|
cmd = '%s %s' % (cmd, module.params[param])
|
||||||
|
|
||||||
rc, out, err = module.run_command(cmd, cwd=app_path)
|
rc, out, err = module.run_command(cmd, cwd=os.path.expanduser(app_path))
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
if command == 'createcachetable' and 'table' in err and 'already exists' in err:
|
if command == 'createcachetable' and 'table' in err and 'already exists' in err:
|
||||||
out = 'Already exists.'
|
out = 'Already exists.'
|
||||||
|
|
Loading…
Reference in a new issue