This commit is contained in:
Petr Kalis 2021-08-25 14:33:16 +02:00
parent 64ab6ffc88
commit 2d55233c6b
3 changed files with 2 additions and 7 deletions

View file

@ -1,3 +1,3 @@
# to have required methods for interface
def ls():
pass
pass

View file

@ -17,8 +17,6 @@ from .webpublish_routes import (
PublishesStatusEndpoint
)
from openpype.api import get_system_settings
log = PypeLogger().get_logger("webserver_gui")
@ -129,7 +127,7 @@ def reprocess_failed(upload_dir, webserver_url):
try:
r = requests.post(server_url, json=data)
log.info("response{}".format(r))
except:
except Exception:
log.info("exception", exc_info=True)
dbcon.update_one(

View file

@ -1,8 +1,5 @@
import os
import socket
from abc import ABCMeta, abstractmethod
import six
from openpype import resources
from openpype.modules import OpenPypeModule