Skip to content

Commit 3d83fdb

Browse files
author
Richard Jones
committed
really fix the missing delimeter problem
1 parent 51ba1f0 commit 3d83fdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/rcsv.py

Lines changed: 2 additions & 2 deletions
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):
@@ -54,7 +54,7 @@ def writerows(self, rows):
5454

5555
except ImportError:
5656
class excel:
57-
pass
57+
delimiter = ':'
5858

5959
class colon_separated(excel):
6060
delimiter = ':'

0 commit comments

Comments
 (0)