better support for keep 'em seperated

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-12 18:48:15 -04:00
parent ef11b3e854
commit 3be04989fd
+2 -1
View File
@@ -1347,7 +1347,8 @@ def run(command, args, three=None, python=False):
command = _c.pop(0)
if _c:
args = list(args)
args.insert(0, *_c)
for __c in reversed(_c):
args.insert(0, __c)
_which = 'which' if not os.name == 'nt' else 'where'