# HG changeset patch # User Matt Mackall # Date 1214508950 18000 # Node ID 60a0156b904c34322219f1577dcd5ffe6f1526d0 # Parent b1c6316130748eb38846c80e6293627dac3ede79 repo.status: eliminate list_ [ original upstream description] diff -r b1c631613074 -r 60a0156b904c hgkw/keyword.py --- a/hgkw/keyword.py Thu Jun 26 14:35:50 2008 -0500 +++ b/hgkw/keyword.py Thu Jun 26 14:35:50 2008 -0500 @@ -260,7 +260,7 @@ Returns status of working directory.''' if kwt: matcher = cmdutil.match(repo, pats, opts) - return repo.status(match=matcher, list_clean=True) + return repo.status(match=matcher, clean=True) if ui.configitems('keyword'): raise util.Abort(_('[keyword] patterns cannot match')) raise util.Abort(_('no [keyword] patterns configured'))