/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/commit.py

merge Parth's work into Breezy

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
                     StrictCommitFailed
66
66
                     )
67
67
from .osutils import (get_user_encoding,
 
68
                      has_symlinks,
68
69
                      is_inside_any,
69
70
                      minimum_path_selection,
70
71
                      splitpath,
703
704
                # 'missing' path
704
705
                if report_changes:
705
706
                    reporter.missing(new_path)
 
707
                if change[6][0] == 'symlink' and not has_symlinks():
 
708
                    trace.warning('Ignoring "%s" as symlinks are not '
 
709
                                  'supported on this platform.' % (change[1][0],))
 
710
                    continue
706
711
                deleted_paths.append(change[1][1])
707
712
                # Reset the new path (None) and new versioned flag (False)
708
713
                change = (change[0], (change[1][0], None), change[2],