django_manage: expand ~ in app_path parameter
Allow users to specify app_path parameters that contain ~, for example: app_path=~/myproject
This commit is contained in:
parent
19b328c4df
commit
d7db09a0eb
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue