diff mercurial/context.py @ 16683:525fdb738975

cleanup: eradicate long lines
author Brodie Rao <brodie@sf.io>
date Sat, 12 May 2012 15:54:54 +0200
parents b6081c2c4647
children e7bf09acd410
line wrap: on
line diff
--- 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,