use repo.changectx rather than context.changectx stable
authorMatt Mackall <mpm@selenic.com>
Wed, 25 Jun 2008 17:34:28 -0500
branchstable
changeset 466 ddb8a222249b
parent 465 2f017ca736ce
child 467 1dfcc2e2cdb3
use repo.changectx rather than context.changectx [ original upstream description ]
hgkw/keyword.py
--- a/hgkw/keyword.py	Thu Jun 12 02:27:06 2008 +0200
+++ b/hgkw/keyword.py	Wed Jun 25 17:34:28 2008 -0500
@@ -80,7 +80,7 @@
 "Log = {desc}" expands to the first line of the changeset description.
 '''
 
-from mercurial import commands, cmdutil, context, dispatch, filelog, revlog
+from mercurial import commands, cmdutil, dispatch, filelog, revlog
 from mercurial import patch, localrepo, templater, templatefilters, util
 from mercurial.hgweb import webcommands
 from mercurial.node import nullid, hex
@@ -144,7 +144,7 @@
     def getnode(self, path, fnode):
         '''Derives changenode from file path and filenode.'''
         # used by kwfilelog.read and kwexpand
-        c = context.filectx(self.repo, path, fileid=fnode)
+        c = self.repo.filectx(path, fileid=fnode)
         return c.node()
 
     def substitute(self, data, path, node, subfunc):