Fix typo in instantiation of ErrorDuringImport.
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index ece8f96..2fab0dd 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1069,7 +1069,7 @@
                 continue
             else:
                 # Some other error occurred before executing the module.
-                raise ErrorDuringImport(filename, sys.exc_info())
+                raise ErrorDuringImport(path, sys.exc_info())
         try:
             x = module
             for p in parts[n:]: