From 993ca51a651238ad97b17cccd952a3a2df04282e Mon Sep 17 00:00:00 2001 From: Nehereus <55364637+Nehereus@users.noreply.github.com> Date: Mon, 11 Dec 2023 23:29:27 -0600 Subject: [PATCH] Update callbacks.py to show tracebacks on ValueError (#4892) --- modules/callbacks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/callbacks.py b/modules/callbacks.py index bb979a6c..25ede07c 100644 --- a/modules/callbacks.py +++ b/modules/callbacks.py @@ -56,6 +56,7 @@ class Iteratorize: try: ret = self.mfunc(callback=_callback, *args, **self.kwargs) except ValueError: + traceback.print_exc() pass except: traceback.print_exc()