Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 13075:d73c3034deee
coding style: fix gratuitous whitespace after Python keywords
author | Thomas Arendsen Hein <thomas@jtah.de> |
---|---|
date | Fri, 03 Dec 2010 11:30:45 +0100 |
parents | 6c375e07d673 |
children | a98a90023261 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Fri Dec 03 11:23:38 2010 +0100 +++ b/mercurial/localrepo.py Fri Dec 03 11:30:45 2010 +0100 @@ -1220,7 +1220,7 @@ def heads(self, start=None): heads = self.changelog.heads(start) # sort the output in rev descending order - return sorted(heads, key=self.changelog.rev, reverse=True) + return sorted(heads, key=self.changelog.rev, reverse=True) def branchheads(self, branch=None, start=None, closed=False): '''return a (possibly filtered) list of heads for the given branch