From 08d4ed07d3b7c8af011a9d4057b47a84f339a259 Mon Sep 17 00:00:00 2001 From: Austin Appleby Date: Fri, 15 Mar 2024 02:40:17 -0700 Subject: [PATCH] Ditch the 'resolve loads via mod stack' and just do it via the module's dir. Remove 'don't know how to stringize' stuff --- hancho.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/hancho.py b/hancho.py index 764f66a..b2a162d 100755 --- a/hancho.py +++ b/hancho.py @@ -733,9 +733,6 @@ def load_module(self, abs_path): """Loads a Hancho module ***while chdir'd into its directory***""" phys_path = Path(abs_path).resolve() - #print(f"abs_module({abspath(abs_path)})") - #print(f"phys_module({phys_path})") - if phys_path in self.hancho_mods: return self.hancho_mods[phys_path]