fix scripts I broke with the extension tab changes
This commit is contained in:
parent
dc7425a56e
commit
58cc03edd0
|
@ -46,7 +46,7 @@ class Extension:
|
|||
|
||||
res = []
|
||||
for filename in sorted(os.listdir(dirpath)):
|
||||
res.append(scripts.ScriptFile(dirpath, filename, os.path.join(dirpath, filename)))
|
||||
res.append(scripts.ScriptFile(self.path, filename, os.path.join(dirpath, filename)))
|
||||
|
||||
res = [x for x in res if os.path.splitext(x.path)[1].lower() == extension and os.path.isfile(x.path)]
|
||||
|
||||
|
|
3
webui.py
3
webui.py
|
@ -61,9 +61,6 @@ def wrap_gradio_gpu_call(func, extra_outputs=None):
|
|||
|
||||
def initialize():
|
||||
extensions.list_extensions()
|
||||
#for ext in extensions.extensions:
|
||||
# print(ext.name, ext.path, ext.enabled, ext.remote)
|
||||
#exit()
|
||||
|
||||
if cmd_opts.ui_debug_mode:
|
||||
shared.sd_upscalers = upscaler.UpscalerLanczos().scalers
|
||||
|
|
Loading…
Reference in New Issue