mercurial/context.py
changeset 22201 269688a398c4
parent 22192 d1823cdf8554
child 22207 8dda6f6ff564
--- a/mercurial/context.py	Fri Aug 15 16:20:47 2014 +0200
+++ b/mercurial/context.py	Fri Aug 15 04:37:46 2014 +0200
@@ -735,9 +735,9 @@
         return True
 
     def parents(self):
-        p = self._path
+        _path = self._path
         fl = self._filelog
-        pl = [(p, n, fl) for n in self._filelog.parents(self._filenode)]
+        pl = [(_path, n, fl) for n in self._filelog.parents(self._filenode)]
 
         r = self._filelog.renamed(self._filenode)
         if r: