Merge pull request #376 from lorin/django-expanduser

django_manage: expand ~ in app_path parameter
This commit is contained in:
Toshio Kuratomi 2015-06-25 08:35:50 -07:00
commit 86677f9ed5

View file

@ -218,7 +218,7 @@ def main():
)
command = module.params['command']
app_path = module.params['app_path']
app_path = os.path.expanduser(module.params['app_path'])
virtualenv = module.params['virtualenv']
for param in specific_params: