~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

(mbp) warning on local cross-format fetches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
39
39
    osutils,
40
40
    revision as _mod_revision,
41
41
    symbol_versioning,
 
42
    trace,
42
43
    tsort,
43
44
    ui,
44
45
    versionedfile,
3979
3980
        """See InterRepository.fetch()."""
3980
3981
        if fetch_spec is not None:
3981
3982
            raise AssertionError("Not implemented yet...")
 
3983
        # See <https://launchpad.net/bugs/456077> asking for a warning here
 
3984
        #
 
3985
        # nb this is only active for local-local fetches; other things using
 
3986
        # streaming.
 
3987
        trace.warning("Fetching between repositories with different formats\n"
 
3988
            "from %s to %s.\n"
 
3989
            "This may take some time. Upgrade the branches to the same format \n"
 
3990
            "for better results.\n"
 
3991
            % (self.source._format, self.target._format))
3982
3992
        if (not self.source.supports_rich_root()
3983
3993
            and self.target.supports_rich_root()):
3984
3994
            self._converting_to_rich_root = True