Show More
@@ -95,10 +95,8 b' def pycmd2argv(cmd):' | |||||
95 | if ext in ['.exe', '.com', '.bat']: |
|
95 | if ext in ['.exe', '.com', '.bat']: | |
96 | return [cmd] |
|
96 | return [cmd] | |
97 | else: |
|
97 | else: | |
98 | if sys.platform == 'win32': |
|
98 | return [sys.executable, cmd] | |
99 | return [sys.executable, cmd] |
|
99 | ||
100 | else: |
|
|||
101 | return [sys.executable, cmd] |
|
|||
102 |
|
100 | |||
103 | def abbrev_cwd(): |
|
101 | def abbrev_cwd(): | |
104 | """ Return abbreviated version of cwd, e.g. d:mydir """ |
|
102 | """ Return abbreviated version of cwd, e.g. d:mydir """ |
General Comments 0
You need to be logged in to leave comments.
Login now