# HG changeset patch # User Pierre-Yves David # Date 2012-11-26 18:26:24 # Node ID b3af182a1944502b0d5a6dfbae7a625ad0aae0d2 # Parent a5d85476da6e8554c0527dcf91fead9128079351 clfilter: ensure that tag logic runs unfiltered The current tag logic is not aware of filtering. We keep the status quo, ensuring that the tag cache is computed as before: without any filtering. diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -394,6 +394,7 @@ class localrepository(object): def hook(self, name, throw=False, **args): return hook.hook(self.ui, self, name, throw, **args) + @unfilteredmeth def _tag(self, names, node, message, local, user, date, extra={}): if isinstance(names, str): names = (names,)