mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-14 11:01:39 -08:00
Fix randint issue
This commit is contained in:
parent
6504131919
commit
48904c756f
1 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@ def upload_homeroom():
|
|||
if accs == []:
|
||||
break
|
||||
if (allUsers[key]['origUsername'] in accs):
|
||||
db.child("Users").child(key).child("accounts").child("homeroom^"+gradec+classc+'^'+randint(10000, 99999)).update({
|
||||
db.child("Users").child(key).child("accounts").child("homeroom^"+gradec+classc+'^'+str(randint(10000, 99999))).update({
|
||||
"homeroom": gradec + '^' + classc,
|
||||
"type": 'homeroom'
|
||||
}, session['token'])
|
||||
|
@ -142,7 +142,7 @@ def upload_gp_classes():
|
|||
if accs == []:
|
||||
break
|
||||
if (allUsers[key]['origUsername'] in accs):
|
||||
db.child("Users").child(key).child("accounts").child("GP_Class^"+csv_dict.columns[i+1]+'^'+randint(10000, 99999)).update({
|
||||
db.child("Users").child(key).child("accounts").child("GP_Class^"+csv_dict.columns[i+1]+'^'+str(randint(10000, 99999))).update({
|
||||
csv_dict.columns[i+1]: tmp_csv[j],
|
||||
"type": 'group'
|
||||
}, session['token'])
|
||||
|
|
Loading…
Reference in a new issue