Mercurial > p > roundup > code
diff roundup/rcsv.py @ 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 | 261c2e6ceb1e |
| children |
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 = ':'
