~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

Remove indirection in branch.repository as it is available as repository
variable already.

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
    print '  %8d revision%s' % (revno, plural(revno))
175
175
    committers = {}
176
176
    for rev in history:
177
 
        committers[branch.repository.get_revision(rev).committer] = True
 
177
        committers[repository.get_revision(rev).committer] = True
178
178
    print '  %8d committer%s' % (len(committers), plural(len(committers)))
179
179
    if revno > 0:
180
 
        firstrev = branch.repository.get_revision(history[0])
 
180
        firstrev = repository.get_revision(history[0])
181
181
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
182
182
        print '  %8d day%s old' % (age, plural(age))
183
183
        print '   first revision: %s' % format_date(firstrev.timestamp,
184
184
                                                    firstrev.timezone)
185
185
 
186
 
        lastrev = branch.repository.get_revision(history[-1])
 
186
        lastrev = repository.get_revision(history[-1])
187
187
        print '  latest revision: %s' % format_date(lastrev.timestamp,
188
188
                                                    lastrev.timezone)
189
189
 
195
195
 
196
196
    print
197
197
    print 'Revision store:'
198
 
    c, t = branch.repository._revision_store.total_size(branch.repository.get_transaction())
 
198
    c, t = repository._revision_store.total_size(repository.get_transaction())
199
199
    print '  %8d revision%s' % (c, plural(c))
200
200
    print '  %8d KiB' % (t/1024)
201
201