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

  • Committer: mbp at sourcefrog
  • Date: 2005-03-11 23:19:34 UTC
  • Revision ID: mbp@sourcefrog.net-20050311231934-aa3776aff5200bb9
bzr info: show date of first and latest commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
        firstrev = b.get_revision(history[0])
236
236
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
237
237
        print '  %5d day%s old' % (age, plural(age))
 
238
        print '  first revision: %s' % format_date(firstrev.timestamp,
 
239
                                                 firstrev.timezone)
 
240
 
 
241
        lastrev = b.get_revision(history[-1])
 
242
        print '  latest revision: %s' % format_date(lastrev.timestamp,
 
243
                                                    lastrev.timezone)
 
244
        
238
245
    
239
246
 
240
247