Author: mtredinnick Date: 2007-10-20 05:47:57 -0500 (Sat, 20 Oct 2007) New Revision: 6561
Modified: django/trunk/docs/databases.txt Log: Fixed #5512 -- Added a note about a common MySQLdb upgrade problem. Thanks, Matt Boersma. Modified: django/trunk/docs/databases.txt =================================================================== --- django/trunk/docs/databases.txt 2007-10-20 10:41:56 UTC (rev 6560) +++ django/trunk/docs/databases.txt 2007-10-20 10:47:57 UTC (rev 6561) @@ -76,6 +76,14 @@ If you are trying to use an older version of MySQL and the ``mysql_old`` backend, then 1.2.0 *might* work for you. +.. note:: + If you see ``ImportError: cannot import name ImmutableSet`` when trying to + use Django, your MySQLdb installation may contain an outdated ``sets.py`` + file that conflicts with the built-in module of the same name from Python + 2.4 and later. To fix this, verify that you have installed MySQLdb version + 1.2.1p2 or newer, then delete the ``sets.py`` file in the MySQLdb + directory that was left by an earlier version. + .. _MySQLdb: http://sourceforge.net/projects/mysql-python Creating your database --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
