X-Git-Url: https://git.siccegge.de//index.cgi?p=teilnehmertool.git;a=blobdiff_plain;f=teilnehmertool.py;h=24f144c128660db81637efe86b320ccf828677ab;hp=bc77a2873274ac5d89133b7a3f3b578620aa533e;hb=205afe846faad9bab2ccb176539df507a8675698;hpb=70a19b95f2d6ad7d6bb2423059176b66336cc724 diff --git a/teilnehmertool.py b/teilnehmertool.py index bc77a28..24f144c 100755 --- a/teilnehmertool.py +++ b/teilnehmertool.py @@ -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()