Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 7016:58dcf10eea2b
Backed out changeset 3d54cf97598d (see issue916 for details)
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Wed, 10 Sep 2008 08:48:23 +0200 |
parents | 3d54cf97598d |
children | 582dac23ebac |
line wrap: on
line diff
--- a/mercurial/localrepo.py Mon Sep 08 14:04:10 2008 +0200 +++ b/mercurial/localrepo.py Wed Sep 10 08:48:23 2008 +0200 @@ -221,13 +221,7 @@ raise util.Abort(_('working copy of .hgtags is changed ' '(please commit .hgtags manually)')) - parents = self[None].parents() - parent = None - # use tip instead of the parent rev if there's no working copy - # (avoid creating a new head) - if len(parents) == 1 and parents[0].node() == nullid: - parent = self['tip'].node() - self._tag(names, node, message, local, user, date, parent=parent) + self._tag(names, node, message, local, user, date) def tags(self): '''return a mapping of tag to node'''