Changeset - 1931d4e37fc2
[Not reviewed]
default
0 1 0
Sean Farley - 13 years ago 2013-05-11 21:44:12
sean.michael.farley@gmail.com
Grafted from: 6005ca43e808
hg: ensure that only 'visible' changesets are returned
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/lib/vcs/backends/hg/repository.py
Show inline comments
 
@@ -229,7 +229,7 @@ class MercurialRepository(BaseRepository
 

	
 
    def _get_all_revisions(self):
 

	
 
        return map(lambda x: hex(x[7]), self._repo.changelog.index)[:-1]
 
        return [self._repo[x].hex() for x in self._repo.filtered('visible').changelog.revs()]
 

	
 
    def get_diff(self, rev1, rev2, path='', ignore_whitespace=False,
 
                  context=3):
0 comments (0 inline, 0 general)