~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/push.py

  • Committer: Kent Gibson
  • Date: 2009-03-03 08:21:42 UTC
  • mto: This revision was merged to the branch mainline in revision 4082.
  • Revision ID: warthog618@gmail.com-20090303082142-3ehzbm9adg2dnwp7
Downgrade message that transport cannot update working tree from warning to note.

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
            try:
150
150
                tree_to = dir_to.open_workingtree()
151
151
            except errors.NotLocalUrl:
152
 
                warning("This transport does not update the working "
153
 
                        "tree of: %s. See 'bzr help working-trees' for "
154
 
                        "more information." % br_to.base)
 
152
                note("This transport does not update the working "
 
153
                     "tree of: %s. See 'bzr help working-trees' for "
 
154
                     "more information." % br_to.base)
155
155
                push_result = br_from.push(br_to, overwrite,
156
156
                                           stop_revision=revision_id)
157
157
            except errors.NoWorkingTree: