hgext3rd/topic/__init__.py
changeset 2762 610581a2fb74
parent 2750 bd3824d1b795
child 2793 fb317d218af0
equal deleted inserted replaced
2761:7450e360c88c 2762:610581a2fb74
   204     # plug into logic for this into mergemod.update().
   204     # plug into logic for this into mergemod.update().
   205     extensions.wrapcommand(commands.table, 'update', checkt0)
   205     extensions.wrapcommand(commands.table, 'update', checkt0)
   206 
   206 
   207     try:
   207     try:
   208         evolve = extensions.find('evolve')
   208         evolve = extensions.find('evolve')
   209         extensions.wrapfunction(evolve, "presplitupdate", presplitupdatetopic)
   209         extensions.wrapfunction(evolve.rewriteutil, "presplitupdate",
       
   210                                 presplitupdatetopic)
   210     except (KeyError, AttributeError):
   211     except (KeyError, AttributeError):
   211         pass
   212         pass
   212 
   213 
   213     cmdutil.summaryhooks.add('topic', summaryhook)
   214     cmdutil.summaryhooks.add('topic', summaryhook)
   214 
   215