~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to bzrtools.py

  • Committer: Aaron Bentley
  • Date: 2006-03-07 15:21:50 UTC
  • mto: (147.1.69 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 323.
  • Revision ID: abentley@panoramicfeedback.com-20060307152150-f0e4f0174eb6d241
Applied Robert's random fixes as non-merges

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
    >>> os.chdir(new_dir)
121
121
    >>> rsync("a", "b", silent=True)
122
122
    Traceback (most recent call last):
123
 
    RsyncNoFile: No such file a
124
 
    >>> rsync("a", "b", excludes=("*.py",), silent=True)
 
123
    RsyncNoFile: No such file...
 
124
    >>> rsync(tempdir + "/a", tempdir + "/b", excludes=("*.py",), silent=True) #doctest: +ELLIPSIS
125
125
    Traceback (most recent call last):
126
 
    RsyncNoFile: No such file a
127
 
    >>> rsync("a", "b", excludes=("*.py",), silent=True, rsync_name="rsyncc")
 
126
    RsyncNoFile: No such file...
 
127
    >>> rsync(tempdir + "/a", tempdir + "/b", excludes=("*.py",), silent=True, rsync_name="rsyncc")
128
128
    Traceback (most recent call last):
129
129
    NoRsync: rsyncc not found.
130
130
    >>> os.chdir(old_dir)
288
288
 
289
289
    set_push_data(tree, push_location)
290
290
 
 
291
 
291
292
def short_committer(committer):
292
293
    new_committer = re.sub('<.*>', '', committer).strip(' ')
293
294
    if len(new_committer) < 2: