Changeset 894 in tailor


Ignore:
Timestamp:
10/08/05 14:23:54 (8 years ago)
Author:
lele@…
Hash name:
20051008122354-97f81-ebf97d4dee4b922088e5bcbde668f27c1fc1b418
Message:

Backslashes cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/darcs.py

    r887 r894  
    3333    """ 
    3434 
    35     csets = changesets_from_darcschanges_unsafe(changes, unidiff,\ 
     35    csets = changesets_from_darcschanges_unsafe(changes, unidiff, 
    3636                                                repodir) 
    3737    for cs in csets: 
     
    177177        if pull.exit_status: 
    178178            raise GetUpstreamChangesetsFailure( 
    179                 "%s returned status %d saying \"%s\"" % 
     179                "%s returned status %d saying %r" % 
    180180                (str(pull), pull.exit_status, output.read())) 
    181181 
     
    236236 
    237237                if name.startswith('tagged'): 
    238                     print "Warning: skipping tag %s because I don't \ 
    239                     propagate tags from darcs." % name 
     238                    print "Warning: skipping tag %s because I don't " \ 
     239                          "propagate tags from darcs." % name 
    240240                else: 
    241241                    changesets.append(cset) 
     
    285285        if pull.exit_status: 
    286286            raise ChangesetApplicationFailure( 
    287                 "%s returned status %d saying \"%s\"" % 
     287                "%s returned status %d saying %r" % 
    288288                (str(pull), pull.exit_status, output.read())) 
    289289 
     
    341341            if changes.exit_status: 
    342342                raise ChangesetApplicationFailure( 
    343                     "%s returned status %d saying \"%s\"" % 
     343                    "%s returned status %d saying %r" % 
    344344                    (str(changes), changes.exit_status, 
    345345                     output and output.read() or '')) 
     
    377377                if dpull.exit_status: 
    378378                    raise TargetInitializationFailure( 
    379                         "%s returned status %d saying \"%s\"" % 
     379                        "%s returned status %d saying %r" % 
    380380                        (str(dpull), dpull.exit_status, output.read())) 
    381381        else: 
     
    392392            if dget.exit_status: 
    393393                raise TargetInitializationFailure( 
    394                     "%s returned status %d saying \"%s\"" % 
     394                    "%s returned status %d saying %r" % 
    395395                    (str(dget), dget.exit_status, output.read())) 
    396396 
     
    402402        if changes.exit_status: 
    403403            raise ChangesetApplicationFailure( 
    404                 "%s returned status %d saying \"%s\"" % 
     404                "%s returned status %d saying %r" % 
    405405                (str(changes), changes.exit_status, output.read())) 
    406406 
     
    635635        could be violated and mistagging could result. 
    636636        """ 
    637         cmd = self.repository.command("changes", "--from-match=not name ^TAG",\ 
     637        cmd = self.repository.command("changes", "--from-match=not name ^TAG", 
    638638                                      "--xml-output") 
    639639        changes =  ExternalCommand(cwd=self.basedir, command=cmd) 
     
    641641        if changes.exit_status: 
    642642            raise ChangesetApplicationFailure( 
    643                 "%s returned status %d saying \"%s\"" % 
     643                "%s returned status %d saying %r" % 
    644644                (str(changes), changes.exit_status, output.read())) 
    645645 
Note: See TracChangeset for help on using the changeset viewer.