From 270f7e7128f8e5e9dcccc1465cb724c9fee2bb62 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Thu, 12 Jul 2007 17:44:43 +0000 Subject: [PATCH] Comment clarification. --- scripthandler.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripthandler.py b/scripthandler.py index e6b80b42ce..2472db0f0f 100644 --- a/scripthandler.py +++ b/scripthandler.py @@ -31,6 +31,10 @@ def scriptlink(source_obj, scriptname): retval = cached_scripts.get(scriptname, False) if retval: return retval.class_factory(source_obj) + + ## + ## NOTE: Only go past here when the script isn't already cached. + ## # Split the script name up by periods to give us the directory we need # to change to. I really wish we didn't have to do this, but there's some