Changeset 894 in tailor
- Timestamp:
- 10/08/05 14:23:54 (8 years ago)
- Hash name:
- 20051008122354-97f81-ebf97d4dee4b922088e5bcbde668f27c1fc1b418
- File:
-
- 1 edited
-
vcpx/darcs.py (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/darcs.py
r887 r894 33 33 """ 34 34 35 csets = changesets_from_darcschanges_unsafe(changes, unidiff, \35 csets = changesets_from_darcschanges_unsafe(changes, unidiff, 36 36 repodir) 37 37 for cs in csets: … … 177 177 if pull.exit_status: 178 178 raise GetUpstreamChangesetsFailure( 179 "%s returned status %d saying \"%s\"" %179 "%s returned status %d saying %r" % 180 180 (str(pull), pull.exit_status, output.read())) 181 181 … … 236 236 237 237 if name.startswith('tagged'): 238 print "Warning: skipping tag %s because I don't \239 propagate tags from darcs." % name238 print "Warning: skipping tag %s because I don't " \ 239 "propagate tags from darcs." % name 240 240 else: 241 241 changesets.append(cset) … … 285 285 if pull.exit_status: 286 286 raise ChangesetApplicationFailure( 287 "%s returned status %d saying \"%s\"" %287 "%s returned status %d saying %r" % 288 288 (str(pull), pull.exit_status, output.read())) 289 289 … … 341 341 if changes.exit_status: 342 342 raise ChangesetApplicationFailure( 343 "%s returned status %d saying \"%s\"" %343 "%s returned status %d saying %r" % 344 344 (str(changes), changes.exit_status, 345 345 output and output.read() or '')) … … 377 377 if dpull.exit_status: 378 378 raise TargetInitializationFailure( 379 "%s returned status %d saying \"%s\"" %379 "%s returned status %d saying %r" % 380 380 (str(dpull), dpull.exit_status, output.read())) 381 381 else: … … 392 392 if dget.exit_status: 393 393 raise TargetInitializationFailure( 394 "%s returned status %d saying \"%s\"" %394 "%s returned status %d saying %r" % 395 395 (str(dget), dget.exit_status, output.read())) 396 396 … … 402 402 if changes.exit_status: 403 403 raise ChangesetApplicationFailure( 404 "%s returned status %d saying \"%s\"" %404 "%s returned status %d saying %r" % 405 405 (str(changes), changes.exit_status, output.read())) 406 406 … … 635 635 could be violated and mistagging could result. 636 636 """ 637 cmd = self.repository.command("changes", "--from-match=not name ^TAG", \637 cmd = self.repository.command("changes", "--from-match=not name ^TAG", 638 638 "--xml-output") 639 639 changes = ExternalCommand(cwd=self.basedir, command=cmd) … … 641 641 if changes.exit_status: 642 642 raise ChangesetApplicationFailure( 643 "%s returned status %d saying \"%s\"" %643 "%s returned status %d saying %r" % 644 644 (str(changes), changes.exit_status, output.read())) 645 645
Note: See TracChangeset
for help on using the changeset viewer.
