Grail won't work

Oleg Broytmann phd at emerald.netskate.ru
Fri Jul 9 16:17:25 EDT 1999


On Fri, 9 Jul 1999, Nick Bower wrote:
>     if not isabs(path):
> NameError: isabs
> 
> What does this mean?  Cheers, Nick.

   This:
     if not isabs(path):
   should be:
     if not os.path.isabs(path):

Oleg.
---- 
    Oleg Broytmann        Netskate/Inter.Net.Ru        phd at emerald.netskate.ru
           Programmers don't die, they just GOSUB without RETURN.





More information about the Python-list mailing list