mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Fix
This commit is contained in:
parent
f8198e61a2
commit
c3902d0c9f
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@ async def generate_ss_from_file(
|
|||
await editPesan(replymsg, f"Generating **{frame_count}** screnshots from `{unquote(file_name)}`, please wait...")
|
||||
|
||||
rand_str = get_random_string(7)
|
||||
os.makedir(f"screenshot_{rand_str}")
|
||||
os.mkdir()(f"screenshot_{rand_str}")
|
||||
|
||||
loop_count = frame_count
|
||||
while loop_count != 0:
|
||||
|
|
@ -127,7 +127,7 @@ async def generate_ss_from_link(
|
|||
await editPesan(replymsg, f"Generating **{frame_count}** screnshots from `{unquote(file_name)}`, please wait...")
|
||||
|
||||
rand_str = get_random_string(7)
|
||||
os.makedir(f"screenshot_{rand_str}")
|
||||
os.mkdir(f"screenshot_{rand_str}")
|
||||
|
||||
loop_count = frame_count
|
||||
while loop_count != 0:
|
||||
|
|
|
|||
Loading…
Reference in a new issue