/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

  • Committer: Jelmer Vernooij
  • Date: 2011-11-19 15:49:41 UTC
  • mto: (6266.4.10 hpss-destroy-branch)
  • mto: This revision was merged to the branch mainline in revision 6298.
  • Revision ID: jelmer@samba.org-20111119154941-szkegs07nd0254ev
New HPSS call VersionedFileRepository.get_serializer_format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
from bzrlib.i18n import gettext
44
44
from bzrlib.inventory import Inventory
45
45
from bzrlib.lockable_files import LockableFiles
46
 
from bzrlib.serializer import format_registry as serializer_format_registry
47
46
from bzrlib.smart import client, vfs, repository as smart_repo
48
47
from bzrlib.smart.client import _SmartClient
49
48
from bzrlib.revision import NULL_REVISION
1535
1534
            return self._real_repository.get_serializer_format()
1536
1535
        if response[0] != 'ok':
1537
1536
            raise errors.UnexpectedSmartServerResponse(response)
1538
 
        return serializer_format_registry.get(response[1])
 
1537
        return response[1]
1539
1538
 
1540
1539
    def get_commit_builder(self, branch, parents, config, timestamp=None,
1541
1540
                           timezone=None, committer=None, revprops=None,