Opened 17 years ago

Closed 17 years ago

#6090 closed (wontfix)

Add whitespace between fields in queries

Reported by: Stein Magnus Jodal Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Design decision needed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no
Pull Requests:How to create a pull request

Description

The attached patch adds whitespace between fields in queries, as to better display the queries for debugging.

All occurrences of ",".join(...) in django.db is replaced by ", ".join(...) .

Change History (3)

by Stein Magnus Jodal, 17 years ago

Patch against SVN r6816.

comment:1 by Simon G <dev@…>, 17 years ago

Triage Stage: UnreviewedDesign decision needed

comment:2 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

Not worth changing on trunk at the moment. The queryset-refactor branch already does this, so it'll be part of trunk soon.

Note: See TracTickets for help on using tickets.
Back to Top