On Wed, Mar 5, 2014 at 3:21 PM, Sören Gebbert
<[email protected]>wrote:

> print map_name, "|", start, "|", end


I'm affraid that this prints also spaces around | and so t.register will
fail because it expects only one separator, i.e. |.

That should be

print map_name + "|" + start + "|" + end

http://grass.osgeo.org/grass70/manuals/t.register.html
http://docs.python.org/2/reference/simple_stmts.html#print
_______________________________________________
grass-user mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-user

Reply via email to