Fixed problem when path component is blank.
1 parent 44f2bfd commit 5d9f5079b2a8e387952db28effdc20446622be54
@tundra tundra authored on 25 Jun 2010
Showing 1 changed file
View
4
tsearchpath.py
# For Updates See: http://www.tundraware.com/Software/tsearchpath
 
# Program Information
 
RCSID = "$Id: tsearchpath.py,v 1.107 2010/06/25 14:07:14 tundra Exp $"
RCSID = "$Id: tsearchpath.py,v 1.108 2010/06/25 15:08:23 tundra Exp $"
 
 
#----------------------------------------------------------#
# Imports #
paths = pathlist.split(PATHDELIM)
 
for path in paths:
 
if path[-1] != PATHSEP:
if path and path[-1] != PATHSEP:
path += PATHSEP
 
path += filename