changeset 2372:449906e17576

Changset de893ad6bd17 wrongly reversed the meaning of --nothing
author demian@gaudron.lan
date Tue, 16 May 2006 18:55:22 +0200
parents e39300cdb8ff
children 61976a27aa2b
files purge.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/purge.py	Tue May 16 14:54:34 2006 +0200
+++ b/purge.py	Tue May 16 18:55:22 2006 +0200
@@ -134,7 +134,7 @@
     forgot to add to the repository. If you only want to print the list of
     files that this program would delete use the -vn options.
     '''
-    act = bool(opts['nothing'])
+    act = not opts['nothing']
     abort_on_err = bool(opts['abort_on_err'])
     p = Purge(act, abort_on_err)
     p.purge(ui, repo, paths)