Markus Neteler wrote: > On Fri, Mar 15, 2013 at 8:31 PM, Vaclav Petras <[email protected]> wrote: > ... > > I'm not following the discussion, so I don't know what to patch. > > Nor me... sorry.
http://lists.osgeo.org/pipermail/grass-dev/2013-February/062043.html Replace the split() function in core/utils.py with: def split(s): """!Platform spefic shlex.split""" if sys.platform == "win32": return shlex.split(s.replace('\\', r'\\')) else: return shlex.split(s) -- Glynn Clements <[email protected]> _______________________________________________ grass-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/grass-dev
