Rev 2201: Fix the TooManyConcurrentRequests error message. in sftp://bazaar.launchpad.net/%7Ebzr/bzr/hpss/
Andrew Bennetts
andrew.bennetts at canonical.com
Fri Mar 30 02:49:01 BST 2007
At sftp://bazaar.launchpad.net/%7Ebzr/bzr/hpss/
------------------------------------------------------------
revno: 2201
revision-id: andrew.bennetts at canonical.com-20070330014631-a3xragco77jx67pv
parent: andrew.bennetts at canonical.com-20070329090825-n2imszarc27gf6ls
committer: Andrew Bennetts <andrew.bennetts at canonical.com>
branch nick: hpss
timestamp: Fri 2007-03-30 11:46:31 +1000
message:
Fix the TooManyConcurrentRequests error message.
modified:
bzrlib/errors.py errors.py-20050309040759-20512168c4e14fbd
bzrlib/tests/test_errors.py test_errors.py-20060210110251-41aba2deddf936a8
=== modified file 'bzrlib/errors.py'
--- a/bzrlib/errors.py 2007-03-29 09:08:25 +0000
+++ b/bzrlib/errors.py 2007-03-30 01:46:31 +0000
@@ -1228,7 +1228,7 @@
_fmt = ("The medium '%(medium)s' has reached its concurrent request limit."
" Be sure to finish_writing and finish_reading on the"
- " current open request.")
+ " currently open request.")
internal_error = True
=== modified file 'bzrlib/tests/test_errors.py'
--- a/bzrlib/tests/test_errors.py 2007-03-27 06:42:26 +0000
+++ b/bzrlib/tests/test_errors.py 2007-03-30 01:46:31 +0000
@@ -119,7 +119,7 @@
error = errors.TooManyConcurrentRequests("a medium")
self.assertEqualDiff("The medium 'a medium' has reached its concurrent "
"request limit. Be sure to finish_writing and finish_reading on "
- "the current request that is open.",
+ "the currently open request.",
str(error))
def test_unknown_hook(self):
More information about the bazaar-commits
mailing list