Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Agregar try-except en querier.py #43

Open
JCMiguel opened this issue Oct 1, 2023 · 0 comments
Open

Agregar try-except en querier.py #43

JCMiguel opened this issue Oct 1, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@JCMiguel
Copy link
Owner

JCMiguel commented Oct 1, 2023

Se agregó el manejo de excepciones en la gui, pero falta incorporarlo en querier.py.

El cambio podría ser solamente incorporar una pieza de código como la siguiente:

    try:
        querier = Querier(args.__dict__)
        querier.configure()
        querier.search(__debug_flag)
    except Exception:
        traceback.print_exc()
        
    return 0

NOTA: el cambio debe impactarse en querier.py y no en engine/querier.py.

@JCMiguel JCMiguel added the bug Something isn't working label Oct 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant