# HG changeset patch # User Matt Mackall # Date 1210610228 18000 # Node ID 58b6ee2e6c923ed249f835c7539ec529e3fa529a # Parent f3d7c2e81be12d40f1a2743f1cc68bc6da86efed dirstate: remove default from status list_unknown diff -r f3d7c2e81be1 -r 58b6ee2e6c92 mercurial/dirstate.py --- a/mercurial/dirstate.py Mon May 12 11:37:08 2008 -0500 +++ b/mercurial/dirstate.py Mon May 12 11:37:08 2008 -0500 @@ -569,7 +569,7 @@ if imatch(k): yield 'm', k, None - def status(self, files, match, list_ignored, list_clean, list_unknown=True): + def status(self, files, match, list_ignored, list_clean, list_unknown): lookup, modified, added, unknown, ignored = [], [], [], [], [] removed, deleted, clean = [], [], []