~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/send.py

Merge bzr.dev into cleanup resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
                base_revision_id = revision[0].as_revision_id(branch)
112
112
        if revision_id is None:
113
113
            if tree is not None:
114
 
                tree.warn_if_changed_or_out_of_date(
115
 
                    strict, 'send_strict', 'Use --no-strict to force the send.')
 
114
                tree.check_changed_or_out_of_date(
 
115
                    strict, 'send_strict',
 
116
                    more_error='Use --no-strict to force the send.',
 
117
                    more_warning='Uncommitted changes will not be sent.')
116
118
            revision_id = branch.last_revision()
117
119
        if revision_id == NULL_REVISION:
118
120
            raise errors.BzrCommandError('No revisions to submit.')