##// END OF EJS Templates
localrepo.status: only append stuff to the clean list if list_clean is true...
Alexis S. L. Carvalho -
r4579:e7d4ed54 default
parent child Browse files
Show More
@@ -951,7 +951,8 b' class localrepository(repo.repository):'
951 if fcmp(f, getnode):
951 if fcmp(f, getnode):
952 modified.append(f)
952 modified.append(f)
953 else:
953 else:
954 clean.append(f)
954 if list_clean:
955 clean.append(f)
955 if not wlock and not mywlock:
956 if not wlock and not mywlock:
956 mywlock = True
957 mywlock = True
957 try:
958 try:
General Comments 0
You need to be logged in to leave comments. Login now