Closed GoogleCodeExporter closed 8 years ago
Thanks for the bug report. I'll take a look.
Original comment by nicora...@gmail.com
on 16 Dec 2010 at 11:24
I committed a fix for this bug. It will go out with the next release. You can
change these two lines in autoload/conque_term/conque_subprocess.py to get it
before then:
Index: autoload/conque_term/conque_subprocess.py
===================================================================
--- autoload/conque_term/conque_subprocess.py (revision 434)
+++ autoload/conque_term/conque_subprocess.py (working copy)
@@ -52,6 +52,7 @@
import fcntl
import termios
import struct
+ import shlex
class ConqueSubprocess:
@@ -71,7 +72,7 @@
def open(self, command, env={}): # {{{
# parse command
- command_arr = command.split()
+ command_arr = shlex.split(command)
executable = command_arr[0]
args = command_arr
Original comment by nicora...@gmail.com
on 17 Dec 2010 at 12:10
Thats amazing, it worked perfectly!!
Thanks for the quick response!
Original comment by magnun.l...@gmail.com
on 17 Dec 2010 at 2:59
Original issue reported on code.google.com by
magnun.l...@gmail.com
on 16 Dec 2010 at 4:13