##// END OF EJS Templates
manifest: add manifestdict.hasdir() method...
Drew Gottlieb -
r24324:149cc171 default
parent child Browse files
Show More
@@ -155,6 +155,9 b' class manifestdict(object):'
155 def dirs(self):
155 def dirs(self):
156 return self._dirs
156 return self._dirs
157
157
158 def hasdir(self, dir):
159 return dir in self._dirs
160
158 def matches(self, match):
161 def matches(self, match):
159 '''generate a new manifest filtered by the match argument'''
162 '''generate a new manifest filtered by the match argument'''
160 if match.always():
163 if match.always():
General Comments 0
You need to be logged in to leave comments. Login now