Hi<div>I have just runned nightly buillts for GRASS6.4 and 6.5 and it seems that it&#39;s not enough to have that fixed.</div><div>Any other suggestion?<br><br><div class="gmail_quote">2011/3/26 Markus Neteler <span dir="ltr">&lt;<a href="mailto:neteler@osgeo.org">neteler@osgeo.org</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div></div><div class="h5">On Sat, Mar 26, 2011 at 8:09 PM, Glynn Clements<br>
&lt;<a href="mailto:glynn@gclements.plus.com">glynn@gclements.plus.com</a>&gt; wrote:<br>
&gt;<br>
&gt; katrin eggert wrote:<br>
&gt;<br>
&gt;&gt; Just a preliminary note: This error is reported here:<br>
&gt;&gt; <a href="http://lists.osgeo.org/pipermail/grass-dev/2011-March/053774.html" target="_blank">http://lists.osgeo.org/pipermail/grass-dev/2011-March/053774.html</a><br>
&gt;&gt;<br>
&gt;&gt; I saw that Glynn sugeste this a couple of months ago:<br>
&gt;&gt; <a href="http://lists.osgeo.org/pipermail/grass-dev/2010-October/052396.html" target="_blank">http://lists.osgeo.org/pipermail/grass-dev/2010-October/052396.html</a><br>
&gt;&gt;<br>
&gt;&gt; Can this be an option to solve this problem? Can anyone give a few tips on<br>
&gt;&gt; this? (just to try and test it)<br>
&gt;<br>
&gt; Right. Currently, 6.5 has utils.split(), which handles Windows<br>
&gt; filenames, but much of the wx GUI is still using shlex.split()<br>
&gt; directly.<br>
&gt;<br>
&gt; Feel free to replace all occurrences of shlex.split() with<br>
&gt; utils.split() in your local copy. Also, open a bug report (if there<br>
&gt; isn&#39;t already one for this issue).<br>
<br>
</div></div>Here a silly two-line for most of the job:<br>
<br>
cd gui/wxpython/gui_modules/<br>
for i in menuform.py gmodeler.py menu.py prompt.py goutput.py ; do mv<br>
$i tmp.py ; cat tmp.py | sed &#39;s+shlex.split+utils.split+g&#39; &gt; $i ; rm<br>
-f tmp.py ; done<br>
for i in menuform.py gmodeler.py menu.py prompt.py goutput.py ; do mv<br>
$i tmp.py ; cat tmp.py | sed &#39;s+import shlex+import utils+g&#39; &gt; $i ; rm<br>
-f tmp.py ; done<br>
<br>
I hesitate to submit this since a my wx fu is not high enough to verify<br>
but the GUI starts.<br>
<font color="#888888"><br>
Markus<br>
</font></blockquote></div><br></div>