equal
deleted
inserted
replaced
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 |