Capitalized "Python" in docs and comments.

This commit is contained in:
Jon Dufresne 2018-10-09 06:26:07 -07:00 committed by Tim Graham
parent 31c0348687
commit e90af8bad4
13 changed files with 13 additions and 13 deletions

View file

@ -138,7 +138,7 @@ class InspectDBTestCase(TestCase):
out = StringIO()
call_command('inspectdb', table_name_filter=inspectdb_tables_only, stdout=out)
output = out.getvalue()
error_message = "inspectdb generated an attribute name which is a python keyword"
error_message = "inspectdb generated an attribute name which is a Python keyword"
# Recursive foreign keys should be set to 'self'
self.assertIn("parent = models.ForeignKey('self', models.DO_NOTHING)", output)
self.assertNotIn(