From e3fbf363e1a6c9190d0bec229315948e7e216f49 Mon Sep 17 00:00:00 2001 From: BombasticTom <85838311+BombasticTom@users.noreply.github.com> Date: Sat, 1 Jun 2024 13:22:24 +0200 Subject: [PATCH] uncomment a feature back --- psychtobase/src/window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/psychtobase/src/window.py b/psychtobase/src/window.py index 9da2bef..98655c3 100644 --- a/psychtobase/src/window.py +++ b/psychtobase/src/window.py @@ -552,10 +552,10 @@ def convertCallback(self, what): logging.error(f'Problems with your save file: {e}') if psych_mod_folder_path != None and result_path != None: - # try: + try: main.convert(psych_mod_folder_path, result_path, options) - # except Exception as e: - # self.throwError('Exception ocurred', f'{e}') + except Exception as e: + self.throwError('Exception ocurred', f'{e}') else: logging.warn('Select an input folder or output folder first!')