mercurial/localrepo.py
changeset 26323 ed884807dc48
parent 26322 2cd19782d2d4
child 26408 2b31d8636f25
equal deleted inserted replaced
26322:2cd19782d2d4 26323:ed884807dc48
   538         replacing code that is expected to call a hook.
   538         replacing code that is expected to call a hook.
   539         """
   539         """
   540         return hook.hook(self.ui, self, name, throw, **args)
   540         return hook.hook(self.ui, self, name, throw, **args)
   541 
   541 
   542     @unfilteredmethod
   542     @unfilteredmethod
   543     def _tag(self, names, node, message, local, user, date, extra={},
   543     def _tag(self, names, node, message, local, user, date, extra=None,
   544              editor=False):
   544              editor=False):
   545         if isinstance(names, str):
   545         if isinstance(names, str):
   546             names = (names,)
   546             names = (names,)
   547 
   547 
   548         branches = self.branchmap()
   548         branches = self.branchmap()