Remove a zero

master
Tanner Collin 3 years ago
parent ecb8c1f815
commit d1486b61df
  1. 2
      server/main.py

@ -26,7 +26,7 @@ def clients_post():
phone = str(content['phone'])
for i in range(1, 100):
suffix = str(i).zfill(3)
suffix = str(i).zfill(2)
folder = phone + '_' + suffix
path = output_folder / folder
if not path.exists():

Loading…
Cancel
Save