/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/bundle/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-12 13:52:47 UTC
  • mfrom: (3703.2.3 smart-pull-bug-246233)
  • Revision ID: pqm@pqm.ubuntu.com-20080912135247-pyukwwmlmz79d61r
Fix bug #246233: TooManyConcurrentRequests errors at the start of
        pull/merge. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
            return directive, transport
83
83
        else:
84
84
            return _serializer.read_bundle(f), transport
 
85
    except errors.ConnectionReset:
 
86
        raise
85
87
    except (errors.TransportError, errors.PathError), e:
86
88
        raise errors.NotABundle(str(e))
87
89
    except (IOError,), e: