Ticket #7421: patch.patch
File patch.patch, 683 bytes (added by , 16 years ago) |
---|
-
django/core/management/commands/syncdb.py
44 44 # Python implementations may not use the same text. CPython 45 45 # uses the text "No module named management". 46 46 msg = exc.args[0] 47 if not msg.startswith('No module named management') or 'management' not in msg:47 if not msg.startswith('No module named') or 'management' not in msg: 48 48 raise 49 49 50 50 cursor = connection.cursor()