Mercurial > p > roundup > code
diff roundup/rcsv.py @ 2073:261c2e6ceb1e
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 05 Mar 2004 00:08:09 +0000 |
| parents | fc52d57c6c3e |
| children | c20c9d62cf99 |
line wrap: on
line diff
--- a/roundup/rcsv.py Wed Mar 03 23:38:04 2004 +0000 +++ b/roundup/rcsv.py Fri Mar 05 00:08:09 2004 +0000 @@ -5,12 +5,10 @@ from roundup.i18n import _ from cStringIO import StringIO -error = """Sorry, you need a module compatible with the csv module. -Either upgrade your Python to 2.3 or later, or get and install -the csv module from: +error = """ +Sorry, you need a csv module. Either upgrade your Python to 2.3 or later, +or get and install the csv module from: http://www.object-craft.com.au/projects/csv/ - -These two csv modules are different but Roundup can use either. """ try: import csv
