Submitter | Martin von Zweigbergk |
---|---|
Date | Sept. 23, 2014, 9:46 p.m. |
Message ID | <998451943c857aaabc31.1411508768@handduk2.mtv.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/5924/ |
State | Superseded |
Commit | 5e27eccbc0a4500dd1670652af4ccbba991dc44a |
Headers | show |
Comments
Patch
diff --git a/hgext/largefiles/reposetup.py b/hgext/largefiles/reposetup.py --- a/hgext/largefiles/reposetup.py +++ b/hgext/largefiles/reposetup.py @@ -37,11 +37,8 @@ if self.lfstatus: class lfilesmanifestdict(manifest.manifestdict): def __contains__(self, filename): - if super(lfilesmanifestdict, - self).__contains__(filename): - return True - return super(lfilesmanifestdict, - self).__contains__(lfutil.standin(filename)) + orig = super(lfilesmanifestdict, self).__contains__ + return orig(filename) or orig(lfutil.standin(filename)) class lfilesctx(ctx.__class__): def files(self): filenames = super(lfilesctx, self).files()