##// END OF EJS Templates
localrepo.status: move fixup concatenation inside if block for clarity...
Nicolas Dumazet -
r11669:c47cb319 default
parent child Browse files
Show More
@@ -1064,11 +1064,11 b' class localrepository(repo.repository):'
1064 else:
1064 else:
1065 fixup.append(f)
1065 fixup.append(f)
1066
1066
1067 if listclean:
1068 clean += fixup
1069
1070 # update dirstate for files that are actually clean
1067 # update dirstate for files that are actually clean
1071 if fixup:
1068 if fixup:
1069 if listclean:
1070 clean += fixup
1071
1072 try:
1072 try:
1073 # updating the dirstate is optional
1073 # updating the dirstate is optional
1074 # so we don't wait on the lock
1074 # so we don't wait on the lock
General Comments 0
You need to be logged in to leave comments. Login now