Fix: Use adjusted pip arguments in execute method

This commit is contained in:
Gina Häußge 2015-09-29 16:38:26 +02:00
parent 705f0706fd
commit 79b8639135

View file

@ -98,7 +98,7 @@ class PipCaller(CommandlineCaller):
self._logger.debug("Version {} needs --no-use-wheel to properly work.".format(self.version))
arg_list.append("--no-use-wheel")
command = [self._command] + list(args)
command = [self._command] + list(arg_list)
if self._use_sudo:
command = ["sudo"] + command
return self.call(command)