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

MergeĀ knitsĀ branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
302
302
            lines = coded.split('\n')
303
303
            revision_graph = {}
304
304
            for line in lines:
305
 
                d = list(line.split())
 
305
                d = tuple(line.split())
306
306
                revision_graph[d[0]] = d[1:]
307
307
                
308
308
            return revision_graph