From 50d3228c9855ad8cc287795a988973cfd4e5852e Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 7 Apr 2004 00:09:04 +0000 Subject: [PATCH] really fix the missing delimeter problem git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2261 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/rcsv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roundup/rcsv.py b/roundup/rcsv.py index 08798d0..e8a4c8e 100644 --- a/roundup/rcsv.py +++ b/roundup/rcsv.py @@ -20,7 +20,7 @@ try: 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 @@ try: except ImportError: class excel: - pass + delimiter = ':' class colon_separated(excel): delimiter = ':' -- 2.30.2