Grail won't work
Oleg Broytmann
phd at emerald.netskate.ru
Fri Jul 9 16:17:25 EDT 1999
More information about the Python-list mailing list
Fri Jul 9 16:17:25 EDT 1999
- Previous message (by thread): Grail won't work
- Next message (by thread): Grail won't work
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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.
- Previous message (by thread): Grail won't work
- Next message (by thread): Grail won't work
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list