/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: Canonical.com Patch Queue Manager
  • Date: 2008-04-28 05:54:46 UTC
  • mfrom: (3383.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080428055446-p0m8jwv1jzegn933
Merge back 1.4 to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
859
859
        body = self._serialise_search_recipe(recipe)
860
860
        path = self.bzrdir._path_for_remote_call(self._client)
861
861
        for key in keys:
862
 
            assert type(key) is str
 
862
            if type(key) is not str:
 
863
                raise ValueError(
 
864
                    "key %r not a plain string" % (key,))
863
865
        verb = 'Repository.get_parent_map'
864
866
        args = (path,) + tuple(keys)
865
867
        try: