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
This commit is contained in:
parent
5c3d1ec163
commit
3ad82eff77
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue