Prevent convert_path from crashing if the path is an empty string. Bugfix candidate.

This commit is contained in:
Andrew M. Kuchling 2002-05-06 13:57:19 +00:00
parent efaffae8f6
commit 0b5c11252d
1 changed files with 2 additions and 2 deletions

View File

@ -84,9 +84,9 @@ def convert_path (pathname):
"""
if os.sep == '/':
return pathname
if pathname[0] == '/':
if pathname and pathname[0] == '/':
raise ValueError, "path '%s' cannot be absolute" % pathname
if pathname[-1] == '/':
if pathname and pathname[-1] == '/':
raise ValueError, "path '%s' cannot end with '/'" % pathname
paths = string.split(pathname, '/')