1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-11-04 16:35:07 -05:00

Merge pull request #14 from linuxwolf/tooling-fix

temporary fix to realize the repo root is now the current directory
This commit is contained in:
Matthew A. Miller 2015-07-14 07:15:35 -06:00
commit 39e8858273
2 changed files with 3 additions and 3 deletions

2
gen.py
View File

@ -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

View File

@ -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()