From 2cf1585499e264a6b1a3583a06d025e5ed24d9c9 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 3 Jul 2010 22:03:16 +0000 Subject: [PATCH] Fix a spelling mistake in a comment. --- Lib/importlib/test/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/importlib/test/test_api.py b/Lib/importlib/test/test_api.py index e7290137fcf..0ffa3c4d807 100644 --- a/Lib/importlib/test/test_api.py +++ b/Lib/importlib/test/test_api.py @@ -27,7 +27,7 @@ class ImportModuleTests(unittest.TestCase): self.assertEqual(module.__name__, name) def test_shallow_relative_package_import(self): - # Test importing a module from a package through a relatve import. + # Test importing a module from a package through a relative import. pkg_name = 'pkg' pkg_long_name = '{0}.__init__'.format(pkg_name) module_name = 'mod'