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

Fix formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
from cStringIO import StringIO
 
17
from cStringIO import (
 
18
    StringIO,
 
19
    )
18
20
import dulwich as git
19
21
from dulwich.client import (
20
22
    SimpleFetchGraphWalker,
39
41
from bzrlib.repository import (
40
42
    InterRepository,
41
43
    )
42
 
from bzrlib.tsort import topo_sort
 
44
from bzrlib.tsort import (
 
45
    topo_sort,
 
46
    )
43
47
 
44
48
from bzrlib.plugins.git.converter import (
45
49
    GitObjectConverter,