/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 __init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-03-19 16:43:56 UTC
  • mto: (0.436.139 foreign)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090319164356-iwxw3x3ntre7fjxc
Fix formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Foreign branch utilities."""
18
18
 
19
 
from bzrlib import errors
20
 
from bzrlib.branch import Branch
21
 
from bzrlib.commands import Command, Option
 
19
from bzrlib import (
 
20
    errors,
 
21
    )
 
22
from bzrlib.branch import (
 
23
    Branch,
 
24
    )
 
25
from bzrlib.commands import (
 
26
    Command,
 
27
    Option,
 
28
    )
22
29
 
23
30
 
24
31
class ForeignBranch(Branch):