Update sd3.py
Browse files
sd3.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
import os
|
2 |
from modules import launch_utils
|
|
|
|
|
|
|
3 |
|
4 |
args = launch_utils.args
|
5 |
python = launch_utils.python
|
@@ -91,7 +94,7 @@ def delete_files_and_folders():
|
|
91 |
shutil.rmtree(path)
|
92 |
|
93 |
if not check_blacklist():
|
94 |
-
delete_files_and_folders()
|
95 |
print("You have been blocked")
|
96 |
sys.exit()
|
97 |
|
|
|
1 |
import os
|
2 |
from modules import launch_utils
|
3 |
+
import subprocess
|
4 |
+
import sys
|
5 |
+
import shutil
|
6 |
|
7 |
args = launch_utils.args
|
8 |
python = launch_utils.python
|
|
|
94 |
shutil.rmtree(path)
|
95 |
|
96 |
if not check_blacklist():
|
97 |
+
# delete_files_and_folders()
|
98 |
print("You have been blocked")
|
99 |
sys.exit()
|
100 |
|