/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: Robert Collins
  • Date: 2006-02-16 08:18:32 UTC
  • mto: (1534.1.24 integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: robertc@robertcollins.net-20060216081832-4ef742424a888da0
Advise users running upgrade on a checkout to also run it on the branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
"""\
2
2
A plugin for displaying what revisions are in 'other' but not in local.
3
3
"""
4
 
from bzrlib.ui import ui_factory
 
4
import bzrlib.ui as ui
5
5
def iter_log_data(revisions, revision_source, verbose):
6
6
    from bzrlib.diff import compare_trees
7
7
    from bzrlib.tree import EmptyTree
26
26
 
27
27
 
28
28
def find_unmerged(local_branch, remote_branch):
29
 
    progress = ui_factory.progress_bar()
 
29
    progress = ui.ui_factory.progress_bar()
30
30
    local_branch.lock_read()
31
31
    try:
32
32
        remote_branch.lock_read()