~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

merge dirstate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1309
1309
        self.set_revision_history(history)
1310
1310
 
1311
1311
    def _gen_revision_history(self):
1312
 
        get_cached_utf8 = cache_utf8.get_cached_utf8
1313
 
        history = [get_cached_utf8(l.rstrip('\r\n')) for l in
 
1312
        history = [l.rstrip('\r\n') for l in
1314
1313
                self.control_files.get('revision-history').readlines()]
1315
1314
        return history
1316
1315