Skip to content

Commit dfb0027

Browse files
author
Richard Jones
committed
fixes
1 parent 5eaabb3 commit dfb0027

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Fixed:
1010
- make sure email signature starts on a newline (sf bug 919759)
1111
- add line to rego email to help URL detection (sf bug 906247)
1212
- look harder for text/plain in email
13+
- fixed fallback excel writer in rcsv so it has a delimiter
14+
- fixed setup.py's use of listTemplates (!)
1315

1416

1517
2004-03-01 0.6.7

roundup/rcsv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
except AttributeError:
2121
# fake it all up using the Object-Craft CSV module
2222
class excel:
23-
pass
23+
delimiter = ','
2424
if hasattr(csv, 'parser'):
2525
error = ''
2626
def reader(fileobj, dialect=excel):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.55.2.8 2004-03-01 00:07:27 richard Exp $
19+
# $Id: setup.py,v 1.55.2.9 2004-03-25 00:32:30 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -158,7 +158,7 @@ def main():
158158
'doc/roundup-mailgw.1', 'doc/roundup-server.1']))
159159

160160
# add the templates to the data files lists
161-
from roundup.admin import listTemplates
161+
from roundup.init import listTemplates
162162
templates = [t['path'] for t in listTemplates('templates').values()]
163163
for tdir in templates:
164164
# scan for data files

0 commit comments

Comments
 (0)