[svn r62633] fix path bugs, don't feel like writing a test for this, currently.

--HG--
branch : trunk
This commit is contained in:
hpk 2009-03-06 11:59:02 +01:00
parent c61eb2caac
commit e9f275b176
2 changed files with 3 additions and 2 deletions

View File

@ -136,10 +136,11 @@ class Project:
else:
self.stylesheet = None
else:
p = py.path.local(stylesheet)
p = sourcepath.join(stylesheet)
if p.check():
stylesheet = p
self.stylesheet = stylesheet
#assert self.stylesheet
self.apigen_relpath = relpath(
self.docpath.strpath + '/', self.apigenpath.strpath + '/')

View File

@ -24,7 +24,7 @@ def getproject(path):
confrest = parent.join("confrest.py")
if confrest.check():
Project = confrest.pyimport().Project
return Project(parent.dirpath())
return Project(parent)
class ReSTFile(py.test.collect.File):
def __init__(self, fspath, parent, project=None):