mercurial/subrepo.py
changeset 41673 1db5ae4b0dda
parent 41653 16a49c778bde
child 41675 ddbebce94665
equal deleted inserted replaced
41672:c302218a2528 41673:1db5ae4b0dda
   321         """return file flags"""
   321         """return file flags"""
   322         return ''
   322         return ''
   323 
   323 
   324     def matchfileset(self, expr, badfn=None):
   324     def matchfileset(self, expr, badfn=None):
   325         """Resolve the fileset expression for this repo"""
   325         """Resolve the fileset expression for this repo"""
   326         return matchmod.nevermatcher(self.wvfs.base, '', badfn=badfn)
   326         return matchmod.never(self.wvfs.base, '', badfn=badfn)
   327 
   327 
   328     def printfiles(self, ui, m, fm, fmt, subrepos):
   328     def printfiles(self, ui, m, fm, fmt, subrepos):
   329         """handle the files command for this subrepo"""
   329         """handle the files command for this subrepo"""
   330         return 1
   330         return 1
   331 
   331