Fix: missing exception

This commit is contained in:
Emmanuel Viennet 2024-04-04 11:23:26 +02:00
parent 8ec0171ca0
commit 42e8f97441
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ from flask import g
import app.scodoc.sco_utils as scu
from config import Config
from app import log
from app.scodoc.sco_exceptions import ScoValueError
from app.scodoc.sco_exceptions import ScoException, ScoValueError
class BaseArchiver: