diff hgext/record.py @ 5147:c80af96943aa

refactor options from cmdtable - add extracommitopts for user and date - factor stuff
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 08 Aug 2007 12:27:20 +0200
parents d4fa6bafc43a
children 67afecb8d6cc
line wrap: on
line diff
--- a/hgext/record.py	Tue Aug 07 15:57:23 2007 +0200
+++ b/hgext/record.py	Wed Aug 08 12:27:20 2007 +0200
@@ -375,8 +375,6 @@
         (record,
          [('A', 'addremove', None,
            _('mark new/missing files as added/removed before committing')),
-          ('d', 'date', '', _('record datecode as commit date')),
-          ('u', 'user', '', _('record user as commiter')),
-         ] + commands.walkopts + commands.commitopts,
+         ] + commands.walkopts + commands.commitopts + commands.commitopts2,
          _('hg record [OPTION]... [FILE]...')),
 }