~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
1
2
"""\
2
3
A plugin for displaying what revisions are in 'other' but not in local.
3
4
"""
4
5
 
 
6
import bzrlib
 
7
 
 
8
try:
 
9
    set
 
10
except NameError:
 
11
    from sets import Set as set
 
12
 
 
13
 
5
14
def show_missing(br_local, br_remote, verbose=False, quiet=False):
6
15
    """Show the revisions which exist in br_remote, that 
7
16
    do not exist in br_local.