On Saturday 19 December 2009 15:42:47 Enrico Forestieri wrote: > > Furthermore, lyx2lyx still fails if the path contains a ' > > character. This is branch. I didn't test trunk. > > Then, there's a quoting problem in python, too.
That only depends on the way we are passing the arguments: $ cat t.py #!/usr/bin/python import sys print sys.argv $ ./t.py "a'b" ['./t.py', "a'b"] $ ./t.py a\'b ['./t.py', "a'b"] -- José Abílio
