mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
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:
committed by
Matt Clay
parent
c366e7acb2
commit
abf314c258
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user