~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-15 13:49:38 UTC
  • mfrom: (6060.3.1 fix-last-revno-args)
  • Revision ID: pqm@pqm.ubuntu.com-20110815134938-4fuo63g4v2hj8jdt
(jelmer) Cope with the localhost having the name 'localhost' when running
 the test suite. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
from bzrlib import (
39
39
    errors,
40
40
    osutils,
41
 
    i18n,
42
41
    )
43
42
from bzrlib.config import extract_email_address
44
43
from bzrlib.repository import _strip_NULL_ghosts
108
107
        try:
109
108
            current_rev.committer = branch.get_config().username()
110
109
        except errors.NoWhoami:
111
 
            current_rev.committer = i18n.gettext("local user")
 
110
            current_rev.committer = 'local user'
112
111
        current_rev.message = "?"
113
112
        current_rev.timestamp = round(time.time(), 3)
114
113
        current_rev.timezone = osutils.local_time_offset()