Fixed #6935: Modified inspectdb to provide better handling for table names with spaces. Thanks to adamv for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8403 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2008-08-16 04:51:21 +00:00
parent 7299b39752
commit eab705f623
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Command(NoArgsCommand):
from django.db import connection from django.db import connection
import keyword import keyword
table2model = lambda table_name: table_name.title().replace('_', '') table2model = lambda table_name: table_name.title().replace('_', '').replace(' ', '')
cursor = connection.cursor() cursor = connection.cursor()
yield "# This is an auto-generated Django model module." yield "# This is an auto-generated Django model module."