From: <sv...@ww...> - 2004-06-06 08:19:57
|
Author: mkrose Date: 2004-06-06 01:19:52 -0700 (Sun, 06 Jun 2004) New Revision: 999 Modified: trunk/CSP/tools/pyrun Log: Fix typo Modified: trunk/CSP/tools/pyrun =================================================================== --- trunk/CSP/tools/pyrun 2004-06-06 08:18:37 UTC (rev 998) +++ trunk/CSP/tools/pyrun 2004-06-06 08:19:52 UTC (rev 999) @@ -128,7 +128,7 @@ for module in modules: name = module.__name__ file = module.__file__ - if uniq.has_key(file): continue + if uniq_modules.has_key(file): continue # determine the full module path relative to sys.path basename = '' # loop through all the paths in sys.path, finding the first one that |