Mercurial > p > roundup > code
changeset 2111:7b06875e3774 maint-0.6
fixes
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 25 Mar 2004 00:32:30 +0000 |
| parents | e53972f581e3 |
| children | e52da2b47edd |
| files | CHANGES.txt roundup/rcsv.py setup.py |
| diffstat | 3 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Wed Mar 24 22:27:39 2004 +0000 +++ b/CHANGES.txt Thu Mar 25 00:32:30 2004 +0000 @@ -10,6 +10,8 @@ - make sure email signature starts on a newline (sf bug 919759) - add line to rego email to help URL detection (sf bug 906247) - look harder for text/plain in email +- fixed fallback excel writer in rcsv so it has a delimiter +- fixed setup.py's use of listTemplates (!) 2004-03-01 0.6.7
--- a/roundup/rcsv.py Wed Mar 24 22:27:39 2004 +0000 +++ b/roundup/rcsv.py Thu Mar 25 00:32:30 2004 +0000 @@ -20,7 +20,7 @@ except AttributeError: # fake it all up using the Object-Craft CSV module class excel: - pass + delimiter = ',' if hasattr(csv, 'parser'): error = '' def reader(fileobj, dialect=excel):
--- a/setup.py Wed Mar 24 22:27:39 2004 +0000 +++ b/setup.py Thu Mar 25 00:32:30 2004 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.55.2.8 2004-03-01 00:07:27 richard Exp $ +# $Id: setup.py,v 1.55.2.9 2004-03-25 00:32:30 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -158,7 +158,7 @@ 'doc/roundup-mailgw.1', 'doc/roundup-server.1'])) # add the templates to the data files lists - from roundup.admin import listTemplates + from roundup.init import listTemplates templates = [t['path'] for t in listTemplates('templates').values()] for tdir in templates: # scan for data files
