From 3ad82eff77ed2d30d74413a7b7cff006bbd8beb2 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 25 Oct 2005 02:01:10 +0000 Subject: [PATCH] Improved autoreloader to ignore files that might be in eggs. Refs #596 git-svn-id: http://code.djangoproject.com/svn/django/trunk@1010 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/autoreload.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py index 039ba68cfb..04e319c1c7 100644 --- a/django/utils/autoreload.py +++ b/django/utils/autoreload.py @@ -37,6 +37,8 @@ def reloader_thread(): mtimes = {} while RUN_RELOADER: for filename in filter(lambda v: v, map(lambda m: getattr(m, "__file__", None), sys.modules.values())) + reloadFiles: + if not os.path.exists(filename): + continue # File might be in an egg, so it can't be reloaded. if filename.endswith(".pyc"): filename = filename[:-1] mtime = os.stat(filename).st_mtime