Changeset - 77124bf9f31a
[Not reviewed]
default
0 1 0
Mads Kiilerich (kiilerix) - 5 years ago 2020-06-08 12:35:00
mads@kiilerich.com
Grafted from: 98b4337311d7
diff: fix per file display of "Raw diff" and others

With py3, the matcher must be a list of byte strings.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general) First comment
kallithea/lib/vcs/backends/hg/repository.py
Show inline comments
 
@@ -272,7 +272,7 @@ class MercurialRepository(BaseRepository
 
            self.get_changeset(rev1)
 
        self.get_changeset(rev2)
 
        if path:
 
            file_filter = mercurial.match.exact(path)
 
            file_filter = mercurial.match.exact([safe_bytes(path)])
 
        else:
 
            file_filter = None
 

	
0 comments (0 inline, 0 general) First comment
You need to be logged in to comment. Login now