Skip to content

Commit

Permalink
Fixed #7421 -- Improved syncdb implementation not to check for exact …
Browse files Browse the repository at this point in the history
…exception text, in case of alternate Python implementation. Thanks, anto.cuni@gmail.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7623 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 12, 2008
1 parent 5309e18 commit acf888b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion django/core/management/commands/syncdb.py
Expand Up @@ -34,7 +34,16 @@ def handle_noargs(self, **options):
try:
__import__(app_name + '.management', {}, {}, [''])
except ImportError, exc:
if not exc.args[0].startswith('No module named management'):
# This is slightly hackish. We want to ignore ImportErrors
# if the "management" module itself is missing -- but we don't
# want to ignore the exception if the management module exists
# but raises an ImportError for some reason. The only way we
# can do this is to check the text of the exception. Note that
# we're a bit broad in how we check the text, because different
# Python implementations may not use the same text. CPython
# uses the text "No module named management".
msg = exc.args[0]
if not msg.startswith('No module named management') or 'management' not in msg:
raise

cursor = connection.cursor()
Expand Down

0 comments on commit acf888b

Please sign in to comment.