Changes between Initial Version and Version 1 of Ticket #30329


Ignore:
Timestamp:
Apr 4, 2019, 5:00:43 AM (5 years ago)
Author:
Alasdair Nicol
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30329 – Description

    initial v1  
    11When an older version of sqlite is installed, the final line of the traceback is unrelated.
    22
     3{{{
    34    raise LookupError(message)
    45LookupError: No installed app with label 'admin'.
     6}}}
    57
    68If you look further up the traceback, you can see what the problem is, but this can be tricky for newer users.
    79
     10{{{
    811    raise ImproperlyConfigured('SQLite 3.8.3 or later is required (found %s).' % Database.sqlite_version)
    912django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.7.17).
     13}}}
    1014
    1115I think that if we made the error message clearer it would be helpful for new users. Perhaps we could do this by checking the sqlite version in a system check, or maybe there's a better approach.
Back to Top