~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Andrew Bennetts
  • Date: 2009-11-11 06:50:40 UTC
  • mto: This revision was merged to the branch mainline in revision 4793.
  • Revision ID: andrew.bennetts@canonical.com-20091111065040-ibq6r3cnza7ekyzs
Show real branch/repo format description in 'info -v' over HPSS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
601
601
        return self._custom_format._fetch_reconcile
602
602
 
603
603
    def get_format_description(self):
604
 
        return 'bzr remote repository'
 
604
        self._ensure_real()
 
605
        return 'Remote: ' + self._custom_format.get_format_description()
605
606
 
606
607
    def __eq__(self, other):
607
608
        return self.__class__ is other.__class__
1999
2000
                self._network_name)
2000
2001
 
2001
2002
    def get_format_description(self):
2002
 
        return 'Remote BZR Branch'
 
2003
        self._ensure_real()
 
2004
        return 'Remote: ' + self._custom_format.get_format_description()
2003
2005
 
2004
2006
    def network_name(self):
2005
2007
        return self._network_name