From 993efe927b1f1112c6de624b68c84d107af52b34 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 24 May 2011 17:28:20 -0500 Subject: [PATCH] fix sentence --- _pytest/assertrewrite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pytest/assertrewrite.py b/_pytest/assertrewrite.py index be49b2266..f6bf31516 100644 --- a/_pytest/assertrewrite.py +++ b/_pytest/assertrewrite.py @@ -87,8 +87,8 @@ class AssertionRewriter(ast.NodeVisitor): if not mod.body: # Nothing to do. return - # Insert some special imports at top but after any docstrings and - # __future__ imports. + # Insert some special imports at the top of the module but after any + # docstrings and __future__ imports. aliases = [ast.alias(py.builtin.builtins.__name__, "@py_builtins"), ast.alias("py", "@pylib"), ast.alias("_pytest.assertrewrite", "@pytest_ar")]