##// END OF EJS Templates
dirstate-item: use the properties in pathutil...
marmoute -
r48330:a9f38b14 default
parent child Browse files
Show More
@@ -323,7 +323,7 b' class dirs(object):'
323 addpath = self.addpath
323 addpath = self.addpath
324 if isinstance(map, dict) and skip is not None:
324 if isinstance(map, dict) and skip is not None:
325 for f, s in pycompat.iteritems(map):
325 for f, s in pycompat.iteritems(map):
326 if s[0] != skip:
326 if s.state != skip:
327 addpath(f)
327 addpath(f)
328 elif skip is not None:
328 elif skip is not None:
329 raise error.ProgrammingError(
329 raise error.ProgrammingError(
General Comments 0
You need to be logged in to leave comments. Login now