On Sun, 2003-12-14 at 09:06, hokiegal99 wrote:
> > I would say: if fname.lower().endswith( '.mp3' ):
>
> Why the '.lower()' part? Wouldn't if fname.endswith('.mp3'): work just
> as well, or am I missing something here?
Because the filename might be WHATEVER.MP3 and endswith, presumably, is
case-sensitive.
Cheers,
// m