From 4934864853439a1ede7e9acede8cccde02e22db9 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Tue, 18 Jan 2011 23:45:53 +0000 Subject: Fix typo in example of barrier timeouts from r88102 --- Doc/whatsnew/3.2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index b53f1a3..f0a8fc0 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -874,7 +874,7 @@ released and a :exc:`~threading.BrokenBarrierError` exception is raised:: ballots = conduct_election(site) try: all_polls_closed.wait(timeout = midnight - time.now()) - except BrokenBarrerError: + except BrokenBarrierError: lockbox = seal_ballots(ballots) queue.put(lockbox) else: -- cgit v0.12