1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-21 03:18:23 +00:00

fixed test

This commit is contained in:
zming
2017-10-13 11:55:47 +08:00
parent bb9d963de5
commit c09c3d0c6b
4 changed files with 16 additions and 137 deletions

View File

@@ -1965,7 +1965,7 @@ def batch_add_user(request):
rows = wb.worksheets[0].rows
records = []
# remove first row(head field).
next(rows)
rows.next()
for row in rows:
records.append([c.value for c in row])