# HG changeset patch # User demian@gaudron.lan # Date 1147779645 -7200 # Node ID de893ad6bd17296b935e7b0e3dcfcacf4a18e1f2 # Parent 9da3dd62c82741fb99d335fe41d40edd46452760 Command line options are read in a saner way diff -r 9da3dd62c827 -r de893ad6bd17 purge.py --- 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)