Skip to content
Snippets Groups Projects
Commit ed4bd789 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

purge: use opts.get()

Most commands use opts.get() to retrieve values for options
that may not be explicitly passed. purge wasn't.

This makes it easier to call purge() from 3rd party extensions.
parent 73f58eb1
No related branches found
No related tags found
No related merge requests found
......@@ -84,5 +84,5 @@
list of files that this program would delete, use the --print
option.
'''
act = not opts['print']
act = not opts.get('print')
eol = '\n'
......@@ -88,4 +88,4 @@
eol = '\n'
if opts['print0']:
if opts.get('print0'):
eol = '\0'
act = False # --print0 implies --print
......@@ -90,7 +90,7 @@
eol = '\0'
act = False # --print0 implies --print
removefiles = opts['files']
removedirs = opts['dirs']
removefiles = opts.get('files')
removedirs = opts.get('dirs')
if not removefiles and not removedirs:
removefiles = True
removedirs = True
......@@ -101,7 +101,7 @@
remove_func(repo.wjoin(name))
except OSError:
m = _('%s cannot be removed') % name
if opts['abort_on_err']:
if opts.get('abort_on_err'):
raise error.Abort(m)
ui.warn(_('warning: %s\n') % m)
else:
......@@ -111,7 +111,7 @@
if removedirs:
directories = []
match.explicitdir = match.traversedir = directories.append
status = repo.status(match=match, ignored=opts['all'], unknown=True)
status = repo.status(match=match, ignored=opts.get('all'), unknown=True)
if removefiles:
for f in sorted(status.unknown + status.ignored):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment