~jelmer/bzr-cvsps-import/avoid-note

« back to all changes in this revision

Viewing changes to cvsps/parser.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-24 17:48:28 UTC
  • Revision ID: jelmer@samba.org-20110324174828-sdefeoevh2su20sy
Avoid pb.note.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""The functionality for parsing a cvsps dump file"""
18
18
 
 
19
from bzrlib import trace
 
20
 
19
21
import calendar
20
22
import time
21
23
 
268
270
        if self._pb is not None:
269
271
            self._pb.update('reading patchsets', 0, len(self._patchsets))
270
272
 
271
 
            self._pb.note('Read %s patchsets (string cache hits: %s, total: %s)',
 
273
            trace.note('Read %s patchsets (string cache hits: %s, total: %s)',
272
274
                len(self._patchsets), self._cache_hits,
273
275
                len(self._string_cache))
274
276