Changeset 395

Show
Ignore:
Timestamp:
Fri Dec 21 12:50:23 2007
Author:
naufraghi
Message:

Fix quoting

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/hooks/hook-xml.py

    r317 r395  
    30 30         cmd = '"echo on && "%s" -c "import xml;print xml.__file__" > "%s""' % (exe, fnm)  
    31 31     else:  
    32           cmd = '""%s" -c "import xml;print xml.__file__" > "%s""' % (exe, fnm)  
      32         cmd = '"%s" -c "import xml;print xml.__file__" > "%s"' % (exe, fnm)  
    32 32     os.system(cmd)  
    33 33