mercurial/context.py
changeset 16683 525fdb738975
parent 16657 b6081c2c4647
child 16719 e7bf09acd410
--- a/mercurial/context.py	Fri May 11 18:41:04 2012 +0200
+++ b/mercurial/context.py	Sat May 12 15:54:54 2012 +0200
@@ -233,7 +233,8 @@
                                         _('not found in manifest'))
         if '_manifestdelta' in self.__dict__ or path in self.files():
             if path in self._manifestdelta:
-                return self._manifestdelta[path], self._manifestdelta.flags(path)
+                return (self._manifestdelta[path],
+                        self._manifestdelta.flags(path))
         node, flag = self._repo.manifest.find(self._changeset[0], path)
         if not node:
             raise error.LookupError(self._node, path,