Remove a zero
This commit is contained in:
@@ -26,7 +26,7 @@ def clients_post():
|
|||||||
phone = str(content['phone'])
|
phone = str(content['phone'])
|
||||||
|
|
||||||
for i in range(1, 100):
|
for i in range(1, 100):
|
||||||
suffix = str(i).zfill(3)
|
suffix = str(i).zfill(2)
|
||||||
folder = phone + '_' + suffix
|
folder = phone + '_' + suffix
|
||||||
path = output_folder / folder
|
path = output_folder / folder
|
||||||
if not path.exists():
|
if not path.exists():
|
||||||
|
Reference in New Issue
Block a user