~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to bzrtools.py

  • Committer: Aaron Bentley
  • Date: 2006-03-09 13:03:04 UTC
  • mfrom: (321.1.3 bzrtools)
  • Revision ID: aaron.bentley@utoronto.ca-20060309130304-d5f7097d1389e641
MergedĀ otherĀ changes

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(new_dir + "/a", new_dir + "/b", excludes=("*.py",), silent=True)
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(new_dir + "/a", new_dir + "/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)
289
289
 
290
290
    set_push_data(tree, push_location)
291
291
 
 
292
 
292
293
def short_committer(committer):
293
294
    new_committer = re.sub('<.*>', '', committer).strip(' ')
294
295
    if len(new_committer) < 2: