~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: Aaron Bentley
  • Date: 2005-10-03 19:50:36 UTC
  • mfrom: (1399)
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: abentley@panoramicfeedback.com-20051003195036-28dbd56f0e852b08
Merged latest from Robert Collins

Show diffs side-by-side

added added

removed removed

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