##// END OF EJS Templates
dirstate-item: use maybe_clean instead of `state` in the eol extension...
marmoute -
r48902:5b6ffd6b default
parent child Browse files
Show More
@@ -423,7 +423,7 b' def reposetup(ui, repo):'
423 423 try:
424 424 wlock = self.wlock()
425 425 for f in self.dirstate:
426 if self.dirstate[f] != b'n':
426 if not self.dirstate.get_entry(f).maybe_clean:
427 427 continue
428 428 if oldeol is not None:
429 429 if not oldeol.match(f) and not neweol.match(f):
General Comments 0
You need to be logged in to leave comments. Login now