/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
        Used before calls to self._real_bzrdir.
155
155
        """
156
156
        if not self._real_bzrdir:
 
157
            if 'hpssvfs' in debug.debug_flags:
 
158
                import traceback
 
159
                warning('VFS BzrDir access triggered\n%s',
 
160
                    ''.join(traceback.format_stack()))
157
161
            self._real_bzrdir = BzrDir.open_from_transport(
158
162
                self.root_transport, _server_formats=False)
159
163
            self._format._network_name = \
597
601
        return self._custom_format._fetch_reconcile
598
602
 
599
603
    def get_format_description(self):
600
 
        return 'bzr remote repository'
 
604
        self._ensure_real()
 
605
        return 'Remote: ' + self._custom_format.get_format_description()
601
606
 
602
607
    def __eq__(self, other):
603
608
        return self.__class__ is other.__class__
1995
2000
                self._network_name)
1996
2001
 
1997
2002
    def get_format_description(self):
1998
 
        return 'Remote BZR Branch'
 
2003
        self._ensure_real()
 
2004
        return 'Remote: ' + self._custom_format.get_format_description()
1999
2005
 
2000
2006
    def network_name(self):
2001
2007
        return self._network_name