##// END OF EJS Templates
dirstate: get rid of default args for status
Matt Mackall -
r4908:8c294ee7 default
parent child Browse files
Show More
@@ -448,8 +448,7 b' class dirstate(object):'
448 if not seen(k) and imatch(k):
448 if not seen(k) and imatch(k):
449 yield 'm', k, None
449 yield 'm', k, None
450
450
451 def status(self, files=None, match=util.always, list_ignored=False,
451 def status(self, files, match, list_ignored, list_clean):
452 list_clean=False):
453 lookup, modified, added, unknown, ignored = [], [], [], [], []
452 lookup, modified, added, unknown, ignored = [], [], [], [], []
454 removed, deleted, clean = [], [], []
453 removed, deleted, clean = [], [], []
455
454
General Comments 0
You need to be logged in to leave comments. Login now