Removes expanduser in favor of type path
Removes the usage of expanduser in favor of the type 'path' for module options. Related to #12263
This commit is contained in:
parent
3efb11e225
commit
e27b4c2ae4
1 changed files with 1 additions and 2 deletions
|
@ -305,7 +305,6 @@ def _get_pip(module, env=None, executable=None):
|
|||
|
||||
pip = None
|
||||
if executable is not None:
|
||||
executable = os.path.expanduser(executable)
|
||||
if os.path.isabs(executable):
|
||||
pip = executable
|
||||
else:
|
||||
|
@ -402,7 +401,7 @@ def main():
|
|||
extra_args=dict(),
|
||||
editable=dict(default=True, type='bool'),
|
||||
chdir=dict(type='path'),
|
||||
executable=dict(),
|
||||
executable=dict(type='path'),
|
||||
umask=dict(),
|
||||
),
|
||||
required_one_of=[['name', 'requirements']],
|
||||
|
|
Loading…
Reference in a new issue