~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: John Arbash Meinel
  • Date: 2007-05-24 12:13:06 UTC
  • mto: This revision was merged to the branch mainline in revision 2491.
  • Revision ID: john@arbash-meinel.com-20070524121306-jlb942ezpitxujud
Cleanup according to PEP8 and some other small whitespace fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Display what revisions are missing in 'other' from 'this' and vice versa."""
18
18
 
19
 
from bzrlib.log import(
 
19
from bzrlib import ui
 
20
from bzrlib.log import (
20
21
    LogRevision,
21
22
    )
22
 
from bzrlib.symbol_versioning import(
 
23
from bzrlib.symbol_versioning import (
23
24
    deprecated_function,
24
25
    zero_seventeen,
25
26
    )
26
 
import bzrlib.ui as ui
27
27
 
28
28
 
29
29
@deprecated_function(zero_seventeen)
50
50
            delta = revision_tree.changes_from(parent_tree)
51
51
        else:
52
52
            delta = None
53
 
        yield LogRevision(rev,revno,delta=delta)
 
53
        yield LogRevision(rev, revno, delta=delta)
54
54
 
55
55
 
56
56
def find_unmerged(local_branch, remote_branch):