summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/whatsnew/3.2.rst2
1 files changed, 1 insertions, 1 deletions
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: