diff options
Diffstat (limited to 'Lib/importlib/_bootstrap.py')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 117c0f6..40d500a 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -1169,6 +1169,8 @@ class FileFinder: return path_hook_for_FileFinder + def __repr__(self): + return "FileFinder(%r)" % (self.path,) # Import itself ############################################################### |