diff --git a/gen.py b/gen.py index 80147916..7c5b29d7 100755 --- a/gen.py +++ b/gen.py @@ -325,7 +325,7 @@ def buildPDF( file, nr ): def buildXEP( filename ): nr = re.match("xep-(\d\d\d\d).xml", filename).group(1) - xepfilepath = getLatestXEPFilename("../", nr); + xepfilepath = getLatestXEPFilename("./", nr); if not xepfilepath: print "getLatestXEPContent (ERROR)" return diff --git a/xeputil.py b/xeputil.py index b2a8f718..85e70174 100644 --- a/xeputil.py +++ b/xeputil.py @@ -50,7 +50,7 @@ class XEP: def revisions(self): repo = hg.repository(ui.ui(), self.BASEDIR) - fctx = repo.filectx('extensions/' + "xep-" + self.nr + ".xml", 'tip') + fctx = repo.filectx("xep-" + self.nr + ".xml", 'tip') revs = [] for rev in fctx.filelog(): revs.append(fctx.filectx(rev).rev()) @@ -59,7 +59,7 @@ class XEP: def contentOfRevision(self, revision): repo = hg.repository(ui.ui(), self.BASEDIR) - fctx = repo.filectx('extensions/' + "xep-" + self.nr + ".xml", revision) + fctx = repo.filectx("xep-" + self.nr + ".xml", revision) # load content for that revision file_text = fctx.data()