~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/upgrade.py

  • Committer: Robert Collins
  • Date: 2005-10-03 05:54:35 UTC
  • mto: (1393.1.30)
  • mto: This revision was merged to the branch mainline in revision 1400.
  • Revision ID: robertc@robertcollins.net-20051003055434-c8ebd30d1de10247
move exporting functionality into inventory.py - uncovers bug in symlink support

Show diffs side-by-side

added added

removed removed

Lines of Context:
324
324
        for file_id in inv:
325
325
            ie = inv[file_id]
326
326
            self._set_revision(rev, ie, parent_invs)
327
 
            if ie.kind != 'file':
 
327
            if not ie.has_text():
328
328
                continue
329
329
            self._convert_file_version(rev, ie, parent_invs)
330
330