From 077c5823d11f6e11f97d3c1d412a6622d953ec6f Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Mon, 6 Jan 2003 11:15:05 +0000 Subject: [PATCH] always also search on sys.path for res files --- Lib/plat-mac/macresource.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Lib/plat-mac/macresource.py b/Lib/plat-mac/macresource.py index 26f909409f..7e99c00a69 100644 --- a/Lib/plat-mac/macresource.py +++ b/Lib/plat-mac/macresource.py @@ -49,9 +49,8 @@ def need(restype, resid, filename=None, modname=None): if sys.modules.has_key(modname): mod = sys.modules[modname] if hasattr(mod, '__file__'): - searchdirs = [os.path.split(mod.__file__)[0]] - if not searchdirs: - searchdirs = sys.path + searchdirs = [os.path.dirname(mod.__file__)] + searchdirs.extend(sys.path) # And look for the file for dir in searchdirs: -- 2.40.0