~bzr-svn/bzr-svn/trunk

« back to all changes in this revision

Viewing changes to commands.py

  • Committer: Jelmer Vernooij
  • Date: 2009-10-19 00:16:47 UTC
  • Revision ID: jelmer@samba.org-20091019001647-0itruu4la6owh7hq
Use trace.note rather than deprecated trace.info.

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
                    return False
180
180
                return True
181
181
 
182
 
            trace.info("Using repository layout: %s" % (layout or from_repos.get_layout(),))
 
182
            trace.note("Using repository layout: %s" % (layout or from_repos.get_layout(),))
183
183
            convert_repository(from_repos, to_location, layout, 
184
184
                               not standalone, trees, all,
185
185
                               format=format,
190
190
            if tmp_repos is not None:
191
191
                osutils.rmtree(tmp_repos)
192
192
            if not trees:
193
 
                trace.info("Use 'bzr checkout' to create a working tree in the newly created branches.")
 
193
                trace.note("Use 'bzr checkout' to create a working tree in the newly created branches.")
194
194
        finally:
195
195
            from_repos.unlock()
196
196