Skip to content

Commit

Permalink
Improved autoreloader to ignore files that might be in eggs. Refs #596
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Oct 25, 2005
1 parent 5c3d1ec commit 3ad82ef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions django/utils/autoreload.py
Expand Up @@ -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
Expand Down

0 comments on commit 3ad82ef

Please sign in to comment.