Ignore:
Timestamp:
Jun 20, 2010, 9:09:03 AM (15 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, fysm-4-1, space-access, stable, stage, test-hooks
Children:
4693952
Parents:
18f99a1
git-author:
Alex Dehnert <adehnert@…> (06/20/10 05:28:02)
git-committer:
Alex Dehnert <adehnert@…> (06/20/10 09:09:03)
Message:

Don't define a delimiter for the CSV import

The DB dump now uses actual CSV with commas. Consequently, there is no longer
a need to set a delimiter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/util/import_db.py

    r43e3c82 rb398cb1  
    3030if __name__ == '__main__':
    3131    indb = sys.stdin
    32     reader = csv.reader(indb, delimiter='$')
     32    reader = csv.reader(indb)
    3333    header = reader.next()
    3434    for line in reader:
Note: See TracChangeset for help on using the changeset viewer.