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

Merge new bzr-foreign.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
        basename = path[:-len(".pack")]
121
121
        p = PackData(path)
122
122
        p.create_index_v2(basename+".idx")
123
 
        pack = Pack(basename)
 
123
        for o in Pack(basename).iterobjects():
 
124
            yield o
124
125
        os.remove(path)
125
 
        return (len(p), pack.iterobjects())
126
126
 
127
127
 
128
128
class RemoteGitBranch(GitBranch):