From db390c1ad8e2c8049e1d0d3828a979c75d1621b9 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 28 Oct 2005 14:39:47 +0000 Subject: fix typos, mostly in comments --- Lib/pydoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/pydoc.py') diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 5d16fa5c7c..5bc92494a7 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -273,7 +273,7 @@ def safeimport(path, forceload=0, cache={}): # Did the error occur before or after the module was found? (exc, value, tb) = info = sys.exc_info() if path in sys.modules: - # An error occured while executing the imported module. + # An error occurred while executing the imported module. raise ErrorDuringImport(sys.modules[path].__file__, info) elif exc is SyntaxError: # A SyntaxError occurred before we could execute the module. -- cgit v1.2.1