/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/delta.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-04 01:44:35 UTC
  • mto: This revision was merged to the branch mainline in revision 7318.
  • Revision ID: jelmer@jelmer.uk-20190304014435-7oxfu3de29rqh5bm
Fix more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
                delta.added.append((path[1], file_id, kind[1]))
143
143
            else:
144
144
                if kind[0] == 'symlink' and not new_tree.supports_symlinks():
145
 
                    trace.warning('bzr: warning: Ignoring "%s" as symlinks '
146
 
                        'are not supported on this platform.' % (path[0],))
 
145
                    trace.warning('Ignoring "%s" as symlinks '
 
146
                        'are not supported on this filesystem.' % (path[0],))
147
147
                else:
148
148
                    delta.removed.append((path[0], file_id, kind[0]))
149
149
        elif fully_present[0] is False: