On Mon, Jun 22, 2009 at 4:02 PM, Graham Chiu <[email protected]> wrote:

>
> Oh yeah .... still won't tangle for me.


Fixed on the trunk at rev 2083.

My apologies for letting this bug go for so long.  Somehow it slipped
through the cracks.

The fix is apparent from the traceback:

File "C:\Leo-4-6-b2\leo\core\leoTangle.py", line 3393, in standardize_name
>    name = name.lower().name.replace('\t',' ').replace('  ',' ')


Change this line to:

    name = name.lower().replace('\t',' ').replace('  ',' ')

You can do this by hand if using bzr is inconvenient for you.

I improved the single unit test for @root so that it actually tests
tangling!

During testing, I noticed that tangling @root x.py from test.leo wrote x.py
to the leo directory, rather than the expected leo/test directory.  This
seems like a fairly serious bug, but I haven't done anything about it yet.
If it is a bug, it's been around for a long time, and I want to make sure
that "fixing" it won't cause you further problems.

Edward

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/leo-editor?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to