~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/log.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-20 07:43:49 UTC
  • mfrom: (4170.2.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090320074349-siii554u411pxpyz
(mbp) Use KB not kB for 1024 bytes

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
        elapsed = time.time() - before
129
129
        if result_len and elapsed > 0:
130
130
            # this is the rate of higher-level data, not the raw network speed
131
 
            mutter("      %9.03fs %8dkB/s" % (elapsed, result_len/elapsed/1024))
 
131
            mutter("      %9.03fs %8dKB/s" % (elapsed, result_len/elapsed/1024))
132
132
        else:
133
133
            mutter("      %9.03fs" % (elapsed))
134
134
        return result