From 80790287ab5e12df0ca03bcfdacb57b83c16d9ec Mon Sep 17 00:00:00 2001
From: Benjamin Peterson <benjamin@python.org>
Date: Sat, 2 Aug 2008 03:05:11 +0000
Subject: revert last revision; code was right

---
 Doc/tutorial/controlflow.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 4c10eb8..4fa9858 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -138,9 +138,9 @@ following loop, which searches for prime numbers::
    ...         if n % x == 0:
    ...             print n, 'equals', x, '*', n/x
    ...             break
-   ... else:
-   ...     # loop fell through without finding a factor
-   ...     print n, 'is a prime number'
+   ...     else:
+   ...         # loop fell through without finding a factor
+   ...         print n, 'is a prime number'
    ... 
    2 is a prime number
    3 is a prime number
-- 
cgit v0.12