hgext/keyword.py
changeset 6021 717881b400b3
parent 5976 9f1e6ab76069
child 6022 e5b5010ff7da
equal deleted inserted replaced
6020:20b05618b3e2 6021:717881b400b3
   408     files configured at all for keyword substitution.'''
   408     files configured at all for keyword substitution.'''
   409 
   409 
   410     if not repo.local():
   410     if not repo.local():
   411         return
   411         return
   412 
   412 
   413     nokwcommands = ('add', 'addremove', 'bundle', 'clone', 'copy',
   413     nokwcommands = ('add', 'addremove', 'bundle', 'copy', 'export', 'grep',
   414                     'export', 'grep', 'identify', 'incoming', 'init',
   414                     'identify', 'incoming', 'init', 'log', 'outgoing', 'push',
   415                     'log', 'outgoing', 'push', 'remove', 'rename',
   415                     'remove', 'rename', 'rollback', 'tip',
   416                     'rollback', 'tip',
       
   417                     'convert')
   416                     'convert')
   418     hgcmd, func, args, opts, cmdopts = dispatch._parse(ui, sys.argv[1:])
   417     hgcmd, func, args, opts, cmdopts = dispatch._parse(ui, sys.argv[1:])
   419     if hgcmd in nokwcommands:
   418     if hgcmd in nokwcommands:
   420         return
   419         return
   421 
   420