~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-09 07:00:48 UTC
  • Revision ID: mbp@sourcefrog.net-20050309070048-a0f0a23015e90267
new --timezone option for bzr log

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
        offset = 0
187
187
    elif timezone == 'original':
188
188
        tt = time.gmtime(t - offset)
189
 
    else:
190
 
        assert timezone == 'local'
 
189
    elif timezone == 'local':
191
190
        tt = time.localtime(t)
192
191
        offset = local_time_offset()
 
192
    else:
 
193
        bailout("unsupported timezone format %r",
 
194
                ['options are "utc", "original", "local"'])
193
195
 
194
196
    return (time.strftime("%a %Y-%m-%d %H:%M:%S", tt)
195
197
            + ' %+03d%02d' % (offset / 3600, (offset / 60) % 60))