Submitter | Josef 'Jeff' Sipek |
---|---|
Date | June 1, 2020, 3:32 p.m. |
Message ID | <e05b94be1ba0cd6e2ccd.1591025567@meili> |
Download | mbox | patch |
Permalink | /patch/46451/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/hgext/git/manifest.py b/hgext/git/manifest.py --- a/hgext/git/manifest.py +++ b/hgext/git/manifest.py @@ -173,9 +173,8 @@ class gittreemanifest(object): self._git_repo[te.id], match, realname + b'/' ): yield inner - if not match(realname): - continue - yield pycompat.fsencode(realname) + elif match(realname): + yield pycompat.fsencode(realname) def walk(self, match): # TODO: this is a very lazy way to merge in the pending