diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-05-02 19:46:31 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-05-02 19:46:31 +0000 |
| commit | 43bf086783ca60b477b0e9e19357eebf1ecb3fd9 (patch) | |
| tree | d07a920c8fbd06cbf20de31def67e0e979ad3b4a /django | |
| parent | cb02b92f854d08f17f93255001f0fdaf8ab8c29e (diff) | |
Fixed #13388 - Refined changes made in r12384 in the JavaScript i18n admin view.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13069 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/views/i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/i18n.py b/django/views/i18n.py index 5cb59c3262..831a764a2a 100644 --- a/django/views/i18n.py +++ b/django/views/i18n.py @@ -219,7 +219,7 @@ def javascript_catalog(request, domain='djangojs', packages=None): except IOError: catalog = None if catalog is not None: - t.update(catalog._catalog) + t = catalog._catalog src = [LibHead] plural = None if '' in t: |
