/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/errors.py

  • Committer: Andrew Bennetts
  • Date: 2007-03-29 09:08:25 UTC
  • mto: (2018.18.6 hpss-faster-copy)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20070329090825-n2imszarc27gf6ls
All TestLockableFiles_RemoteLockDir tests passing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1228
1228
 
1229
1229
    _fmt = ("The medium '%(medium)s' has reached its concurrent request limit."
1230
1230
            " Be sure to finish_writing and finish_reading on the"
1231
 
            " current open request: %(current_request)r")
 
1231
            " current open request.")
1232
1232
 
1233
1233
    internal_error = True
1234
1234
 
1235
1235
    def __init__(self, medium):
1236
1236
        self.medium = medium
1237
 
        self.current_request = medium._current_request
1238
1237
 
1239
1238
 
1240
1239
class SmartProtocolError(TransportError):