Adam -
Good catch! I made the change and have updated the repository. Thanks for the help, and thanks for the feedback!
Mike
On Sep 19, 2006, at 8:41 PM, Adam Potthast wrote:
Mike,
I may have solved the problem. I took a look at the Export to Geektool command and it looks like it was trying to process excluded.gtd as well. So I changed line 35 from:
if (fileName[-3,3] == "gtd") and (fileName != "contexts.gtd")
to
if (fileName[-3,3] == "gtd") and (fileName != "contexts.gtd")
and (fileName != "excluded.gtd")
Now it seems to work fine.
I might work on this command a little so that it takes account of what one wants to ignore in excluded.gtd as well. Given that I know nothing about SVN, would it be welcome to send changes to you?
AP