]> git.siccegge.de Git - teilnehmertool.git/commitdiff
Keine T-Shirts/Zipper mehr im CSV
authorChristoph Egger <Christoph.Egger@fau.de>
Tue, 15 Oct 2013 14:38:41 +0000 (16:38 +0200)
committerChristoph Egger <Christoph.Egger@fau.de>
Tue, 15 Oct 2013 14:38:41 +0000 (16:38 +0200)
teilnehmertool.py

index bc77a2873274ac5d89133b7a3f3b578620aa533e..24f144c128660db81637efe86b320ccf828677ab 100755 (executable)
@@ -26,7 +26,7 @@ def import_teilnehmer(input):
             if not int(row[0]) in ids:
                 print "Importing %s" % (row, )
                 conn.execute("INSERT INTO teilnehmer VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
-                             row + [0, 0, 0])
+                             row[:-2] + ['Kein T-Shirt', 'Kein Pulli'] + row[-2:] + [0, 0, 0])
 
     conn.commit()