Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/cmdutil.py @ 37888:853001c84114
cmdutil: remove unused 'confirmopts' constant
Follows up f10cb49951e1.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 19 Apr 2018 20:33:43 +0900 |
parents | 32a75a8a5b0f |
children | f1f8b655da32 |
comparison
equal
deleted
inserted
replaced
37887:395571419274 | 37888:853001c84114 |
---|---|
59 # templates of common command options | 59 # templates of common command options |
60 | 60 |
61 dryrunopts = [ | 61 dryrunopts = [ |
62 ('n', 'dry-run', None, | 62 ('n', 'dry-run', None, |
63 _('do not perform actions, just print output')), | 63 _('do not perform actions, just print output')), |
64 ] | |
65 | |
66 confirmopts = [ | |
67 ('', 'confirm', None, | |
68 _('ask before applying actions')), | |
69 ] | 64 ] |
70 | 65 |
71 remoteopts = [ | 66 remoteopts = [ |
72 ('e', 'ssh', '', | 67 ('e', 'ssh', '', |
73 _('specify ssh command to use'), _('CMD')), | 68 _('specify ssh command to use'), _('CMD')), |