comparison mercurial/localrepo.py @ 24234:7977d35df13b

localrepo: back out changeset b08af8f0ac01 Running the tags function filtered will lead to different results with different filter levels. This seems too dangerous to be done blindly as b08af8f0ac01 did.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Thu, 05 Mar 2015 14:42:25 -0800
parents d8e0c591781c
children e9ede9b4c2f8
comparison
equal deleted inserted replaced
24233:b6bcfd160e14 24234:7977d35df13b
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
507 def _tag(self, names, node, message, local, user, date, extra={}, 508 def _tag(self, names, node, message, local, user, date, extra={},
508 editor=False): 509 editor=False):
509 if isinstance(names, str): 510 if isinstance(names, str):
510 names = (names,) 511 names = (names,)
511 512