--- a/purge.py Tue May 16 13:37:48 2006 +0200
+++ b/purge.py Tue May 16 13:40:45 2006 +0200
@@ -136,14 +136,8 @@
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 = True
- if opts['nothing']:
- act = False
-
- abort_on_err = True
- if not opts['abort_on_err']:
- abort_on_err = False
-
+ act = bool(opts['nothing'])
+ abort_on_err = bool(opts['abort_on_err'])
p = Purge(act, abort_on_err)
p.purge(ui, repo, paths)