id,summary,reporter,owner,description,type,status,component,version,severity,resolution,keywords,cc,stage,has_patch,needs_docs,needs_tests,needs_better_patch,easy,ui_ux 18657,Inconsistent db names in example,msb@…,nobody,"https://docs.djangoproject.com/en/1.4/topics/db/multi-db/ In the example, the names 'other' and 'credentials' are both used for a single database. It would make more sense if it stuck to just one name. Correct this text: {{{ With this setup installed, lets run some Django code: >>> # This retrieval will be performed on the 'credentials' database >>> fred = User.objects.get(username='fred') >>> fred.first_name = 'Frederick' >>> # This save will also be directed to 'credentials' >>> fred.save() }}} to this: {{{ With this setup installed, and assuming User is a model in myapp, lets run some Django code: >>> # This retrieval will be performed on the 'other' database >>> fred = User.objects.get(username='fred') >>> fred.first_name = 'Frederick' >>> # This save will also be directed to 'other' >>> fred.save() }}} ",Bug,closed,Documentation,1.4,Normal,fixed,,msb stumbles,Accepted,0,0,0,0,1,0