mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Fixed a bug in the banktransfer CSV import
This commit is contained in:
@@ -14,7 +14,7 @@ def parse(data, hint):
|
||||
raise HintMismatchError('Wrong column count')
|
||||
for row in data:
|
||||
resrow = {}
|
||||
if None in row or len(row) == 0:
|
||||
if None in row or len(row) != hint['cols']:
|
||||
# Wrong column count
|
||||
continue
|
||||
if hint.get('payer') is not None:
|
||||
|
||||
Reference in New Issue
Block a user