Modify ↓
#8073 closed defect (fixed)
Duplicate line in ticket/query.py
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | lowest | Milestone: | 0.11.4 |
Component: | ticket system | Version: | devel |
Severity: | trivial | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
I noticed that there is a duplicate line in the export to CSV code of trac.ticket.Query:
writer = csv.writer(content, delimiter=sep) writer = csv.writer(content, delimiter=sep, quoting=csv.QUOTE_MINIMAL)
I think the first line in completely redundant and should be removed. However, no harm is done.
Attachments (1)
Change History (4)
by , 16 years ago
Attachment: | remove_duplicate_writer.diff added |
---|
comment:3 by , 16 years ago
Owner: | changed from | to
---|
Note:
See TracTickets
for help on using tickets.
patch for trunk+0.11 stable branch