6 messages in com.googlegroups.pylons-discussRe: cleaning up leftover eggs
FromSent OnAttachments
Jose Galvez28 Jul 2006 12:43.py
Davo28 Jul 2006 13:36 
primco28 Jul 2006 17:03 
Jose Galvez28 Jul 2006 17:09 
Philip Jenvey28 Jul 2006 17:30 
Jose Galvez28 Jul 2006 17:37 
Subject:Re: cleaning up leftover eggs
From:Jose Galvez (jj.g@gmail.com)
Date:07/28/2006 05:09:10 PM
List:com.googlegroups.pylons-discuss

hmm good point. I wrote it on my windoze box which is case insensitive and so I had to add the .lower()'s. When I looked at the easy-install.pth file all the eggs were in lowercase, which is why I added that. On Linux I take it the pth file uses the correct mixed case? I think I'll change the script to take the OS into account and only use lower() on windows and leave it off for everyone else. I'm setting up a ubuntu box this weekend so I'll do some more testing before I put the script up on activestate as was suggested.

Jose

On 7/28/06, Davo <owen@gmail.com> wrote:

Thanks for this very useful script. My compulsive nature really appreciates it. :)

Running RHEL4, my egg names are mixed-case; some start upper, some start lower. I removed two calls to ".lower()," - one in getListedEggs() and one in getRealEggs(), so as to preserve the original egg names in the directory list and the easy-install.pth list. Now, it works like a charm.

Thanks again!