Mercurial > hg
changeset 20568:d7eb839535d1
merge with stable
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 26 Feb 2014 17:57:23 -0600 |
parents | de8eb208b7d0 (current diff) f1c3ba167b0c (diff) |
children | 0d4be103c734 |
files | |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/purge.py Thu Feb 27 00:23:21 2014 +0100 +++ b/hgext/purge.py Wed Feb 26 17:57:23 2014 -0600 @@ -101,10 +101,12 @@ status = repo.status(match=match, ignored=opts['all'], unknown=True) for f in sorted(status[4] + status[5]): - ui.note(_('removing file %s\n') % f) + if act: + ui.note(_('removing file %s\n') % f) remove(removefile, f) for f in sorted(directories, reverse=True): if match(f) and not os.listdir(repo.wjoin(f)): - ui.note(_('removing directory %s\n') % f) + if act: + ui.note(_('removing directory %s\n') % f) remove(os.rmdir, f)