[AG-DEV] Windows Node services bug!

Douglas Kosovic douglask at itee.uq.edu.au
Thu Oct 30 02:56:40 CDT 2008


Hi Jason

> I have come across a bug in which I was wondering if a fix has already
> been submitted into SVN?
> 
> The bug is on a windows XP machine, in which none of the media tools
> would start.  (Though the tools could be started manually from the
> Command Line).

Could you try modifying win32\ProcessManager.py and add the following
code:

   if command.find(" ") != -1: 
      # 
      # If there are spaces, quote the command
      # 
      command = '"' + command + '"

just before:

   cmdline = command
   for arg in arglist: 
       arg = str(arg) 
       if arg.find(" ") != -1: 
           # 
           # If there are spaces, quote the arg 
           # 
           arg = '"' + arg + '"' 
  
       cmdline += " " + arg


if it works, I could SVN check-in the changes.


Doug




More information about the ag-dev mailing list