Skip to content

Commit 8e574d9

Browse files
author
Richard Jones
committed
CSV export was busted
1 parent e19178b commit 8e574d9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2004-??-?? 0.7.0
5+
Fixed:
6+
- CSV export was busted
7+
8+
49
2004-03-27 0.7.0b2
510
Feature:
611
- added CSV export to index pages

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.19 2004-03-26 18:18:31 wc2so1 Exp $
1+
#$Id: actions.py,v 1.20 2004-03-29 21:56:56 richard Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random
44

@@ -833,7 +833,7 @@ class ExportCSVAction(Action):
833833
def handle(self):
834834
''' Export the specified search query as CSV. '''
835835
# figure the request
836-
request = HTMLRequest(self)
836+
request = templating.HTMLRequest(self)
837837
filterspec = request.filterspec
838838
sort = request.sort
839839
group = request.group

0 commit comments

Comments
 (0)