From 143fa9193c4dd7d921686350298cc689e476f1d9 Mon Sep 17 00:00:00 2001
From: Paul McMillan <Paul@McMillan.ws>
Date: Fri, 30 Dec 2011 20:43:01 +0000
Subject: [PATCH] Improved comment formatting to appease Gaynor.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17311 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 tests/regressiontests/utils/crypto.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/regressiontests/utils/crypto.py b/tests/regressiontests/utils/crypto.py
index 7889ddd43f..e791e0aeef 100644
--- a/tests/regressiontests/utils/crypto.py
+++ b/tests/regressiontests/utils/crypto.py
@@ -130,6 +130,6 @@ class TestUtilsCryptoPBKDF2(unittest.TestCase):
         t1 = elapsed('pbkdf2("password", "salt", iterations=%d)' % n1)
         t2 = elapsed('pbkdf2("password", "salt", iterations=%d)' % n2)
         measured_scale_exponent = math.log(t2 / t1, n2 / n1)
-        #This should be less than 1. We allow up to 1.1 so that tests don't 
-        #fail nondeterministically too often.
+        # This should be less than 1. We allow up to 1.1 so that tests don't 
+        # fail nondeterministically too often.
         self.assertLess(measured_scale_exponent, 1.1)