equal
deleted
inserted
replaced
225 for x in self.status()[:5]: |
225 for x in self.status()[:5]: |
226 if '.hgtags' in x: |
226 if '.hgtags' in x: |
227 raise util.Abort(_('working copy of .hgtags is changed ' |
227 raise util.Abort(_('working copy of .hgtags is changed ' |
228 '(please commit .hgtags manually)')) |
228 '(please commit .hgtags manually)')) |
229 |
229 |
|
230 self.tags() # instantiate the cache |
230 self._tag(names, node, message, local, user, date) |
231 self._tag(names, node, message, local, user, date) |
231 |
232 |
232 def tags(self): |
233 def tags(self): |
233 '''return a mapping of tag to node''' |
234 '''return a mapping of tag to node''' |
234 if self.tagscache: |
235 if self.tagscache: |