~slyguy/bzr-tiplog/trunk

« back to all changes in this revision

Viewing changes to commands.py

  • Committer: Brian de Alwis
  • Date: 2012-07-03 18:40:04 UTC
  • Revision ID: bsd@mt.ca-20120703184004-nl7ltc936ht63kfj
Only output tip-changing-user on --verbose

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
                    info.append(".".join(str(n) for n in revno))
149
149
                except errors.NoSuchRevision:
150
150
                    info.append('???')
151
 
            info.append(change.user)
 
151
            if verbose: info.append(change.user)
152
152
            info.append("[%s]" % change.action)
153
153
            try:
154
154
                rev = tiplog.branch.repository.get_revision(change.revid)