On Thu, Jul 26, 2012 at 2:05 PM, SegundoBob <[email protected]> wrote:
> I'm trying to create a new Leo-Editor outline file using leoBridge and I'm > stuck with this error: > My apologies for the way-too-long delay in responding. A program similar to yours works for me. Here are some ideas: 1. sys.path.append(whatever) puts the latest version of Leo at the *end* of sys.path. Instead, I used sys.path.insert(0,whatever) This should do what you want: ensure that you use the proper Leo. 2. I would insert traces (or use g.pdb(), or pdb.set_trace) to verify each step of your program. HTH. Edward -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/leo-editor. For more options, visit https://groups.google.com/groups/opt_out.
