Mercurial > p > roundup > code
changeset 2190:c20c9d62cf99
really fix the missing delimeter problem
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 07 Apr 2004 00:09:04 +0000 |
| parents | d39068bc6ef9 |
| children | f7f6b6981a13 |
| files | roundup/rcsv.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/rcsv.py Tue Apr 06 22:43:59 2004 +0000 +++ b/roundup/rcsv.py Wed Apr 07 00:09:04 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): @@ -54,7 +54,7 @@ except ImportError: class excel: - pass + delimiter = ':' class colon_separated(excel): delimiter = ':'
