~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: mbp at sourcefrog
  • Date: 2007-02-13 07:28:10 UTC
  • mto: This revision was merged to the branch mainline in revision 2283.
  • Revision ID: mbp@sourcefrog.net-20070213072810-ofxj46bg7en5tx4e
update tests for new locations of weave repos

Show diffs side-by-side

added added

removed removed

Lines of Context:
823
823
    def _deprecated_repository_forwarder():
824
824
        symbol_versioning.warn('%s moved to %s in bzr 0.15'
825
825
            % (name, from_module),
826
 
            DeprecationWarning)
 
826
            DeprecationWarning,
 
827
            stacklevel=2)
827
828
        m = __import__(from_module, globals(), locals(), [name])
828
829
        try:
829
830
            return getattr(m, name)