Changeset 1668 in tailor
- Timestamp:
- 09/02/09 23:20:14 (4 years ago)
- Hash name:
- 20090902212014-61e6f-f083944d4f75720d6986fb246fbed9ff592088f9
- File:
-
- 1 edited
-
vcpx/repository/bzr.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/bzr.py
r1629 r1668 23 23 from bzrlib.branch import Branch 24 24 from bzrlib.bzrdir import BzrDir 25 from bzrlib.errors import NoSuchRevision 25 from bzrlib.errors import NoSuchRevision, TagsNotSupported 26 26 from bzrlib.missing import find_unmerged 27 27 from bzrlib.osutils import normpath, pathjoin … … 396 396 timestamp=timestamp, timezone=timezone) 397 397 398 def _tag(self, tagname, date, author): 399 """ 400 Tag the current version, if supported. 401 """ 402 branch = self._working_tree.branch 403 try: 404 branch.tags.set_tag(tagname, branch.last_revision()) 405 except TagsNotSupported: 406 pass 407 398 408 def _removePathnames(self, names): 399 409 """
Note: See TracChangeset
for help on using the changeset viewer.
