hgkw/keyword.py
branchstable
changeset 371 c093df5fd251
parent 363 263b3b10c55f
child 372 d5588b31bcad
equal deleted inserted replaced
363:263b3b10c55f 371:c093df5fd251
   410     files configured at all for keyword substitution.'''
   410     files configured at all for keyword substitution.'''
   411 
   411 
   412     if not repo.local():
   412     if not repo.local():
   413         return
   413         return
   414 
   414 
   415     nokwcommands = ('add', 'addremove', 'bundle', 'clone', 'copy',
   415     nokwcommands = ('add', 'addremove', 'bundle', 'copy', 'export', 'grep',
   416                     'export', 'grep', 'identify', 'incoming', 'init',
   416                     'identify', 'incoming', 'init', 'log', 'outgoing', 'push',
   417                     'log', 'outgoing', 'push', 'remove', 'rename',
   417                     'remove', 'rename', 'rollback', 'tip',
   418                     'rollback', 'tip',
       
   419                     'convert')
   418                     'convert')
   420     hgcmd, func, args, opts, cmdopts = dispatch._parse(ui, sys.argv[1:])
   419     hgcmd, func, args, opts, cmdopts = dispatch._parse(ui, sys.argv[1:])
   421     if hgcmd in nokwcommands:
   420     if hgcmd in nokwcommands:
   422         return
   421         return
   423 
   422