mercurial/localrepo.py
changeset 24113 b08af8f0ac01
parent 24033 ed5e8a9598ce
child 24114 fafd9a1284cf
equal deleted inserted replaced
24112:5d5ec4fb7ada 24113:b08af8f0ac01
   502         won't call this unless they have registered a custom hook or are
   502         won't call this unless they have registered a custom hook or are
   503         replacing code that is expected to call a hook.
   503         replacing code that is expected to call a hook.
   504         """
   504         """
   505         return hook.hook(self.ui, self, name, throw, **args)
   505         return hook.hook(self.ui, self, name, throw, **args)
   506 
   506 
   507     @unfilteredmethod
       
   508     def _tag(self, names, node, message, local, user, date, extra={},
   507     def _tag(self, names, node, message, local, user, date, extra={},
   509              editor=False):
   508              editor=False):
   510         if isinstance(names, str):
   509         if isinstance(names, str):
   511             names = (names,)
   510             names = (names,)
   512 
   511