##// END OF EJS Templates
dirstate: remove default from status list_unknown
Matt Mackall -
r6593:58b6ee2e default
parent child Browse files
Show More
@@ -569,7 +569,7 b' class dirstate(object):'
569 if imatch(k):
569 if imatch(k):
570 yield 'm', k, None
570 yield 'm', k, None
571
571
572 def status(self, files, match, list_ignored, list_clean, list_unknown=True):
572 def status(self, files, match, list_ignored, list_clean, list_unknown):
573 lookup, modified, added, unknown, ignored = [], [], [], [], []
573 lookup, modified, added, unknown, ignored = [], [], [], [], []
574 removed, deleted, clean = [], [], []
574 removed, deleted, clean = [], [], []
575
575
General Comments 0
You need to be logged in to leave comments. Login now