1
0
mirror of https://github.com/django/django.git synced 2025-03-05 23:12:32 +00:00

Revert "Merge pull request #2508 from tomwys/patch-1"

This reverts commit c45607e9395ffd05c2cff454fdb55b3ab05dc0e3, reversing
changes made to 9769337ca855f4831c855d6663ff3f688ee1652d.
This commit is contained in:
Alex Gaynor 2014-04-02 09:45:42 -07:00
parent 66cbd81456
commit 666990a2a0

View File

@ -81,7 +81,7 @@ def gen_filenames():
Yields a generator over filenames referenced in sys.modules and translation
files.
"""
filenames = [filename.__file__ for filename in sys.modules.values()
filenames = [filename.__file__ for filename in list(sys.modules.values())
if hasattr(filename, '__file__')]
if settings.USE_I18N: