Changeset 800 in tailor
- Timestamp:
- 09/11/05 12:57:23 (8 years ago)
- Hash name:
- 20050911105723-97f81-832aa41ceaae6f837c8640572c6f5e448b4fb97c
- File:
-
- 1 edited
-
vcpx/monotone.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/monotone.py
r799 r800 18 18 from target import SyncronizableTargetWorkingDir, TargetInitializationFailure 19 19 from changes import ChangesetEntry,Changeset 20 from sys import stderr21 20 from os.path import exists, join, isdir 22 21 from os import renames, access, F_OK … … 515 514 # up with only part of the ancestry graph. 516 515 if len(revision)>1: 517 s tderr.write("Branch '%s' has multiple heads. There "518 "is no guarantee to reconstruct the "519 "full history." % module)516 self.log_info("Branch '%s' has multiple heads. There " 517 "is no guarantee to reconstruct the " 518 "full history." % module) 520 519 cmd = [ self.repository.command("automate","ancestors", 521 520 "--db",repository), … … 688 687 "%s returned status %s" % (str(commit),commit.exit_status)) 689 688 else: 690 s tderr.write("No changes to commit - changeset ignored\n")689 self.log_info("No changes to commit - changeset ignored") 691 690 692 691 def _removePathnames(self, names): … … 705 704 if drop.exit_status: 706 705 if not error.read().find("drop <directory>"): 707 log_error(error.read())706 self.log_error(error.read()) 708 707 raise ChangesetApplicationFailure("%s returned status %s" % 709 708 (str(drop),
Note: See TracChangeset
for help on using the changeset viewer.
