diff --git a/GUI_main.py b/GUI_main.py index 1e78f5c52d24c79dafa03495fa0bb343d885227a..987e57ea589cb5741ff759bf856f474843d9cfcc 100644 --- a/GUI_main.py +++ b/GUI_main.py @@ -644,7 +644,15 @@ class App(QMainWindow): timecolindex = timecolindex + 4 # saves the xls file. - book.save(xlsfilename) + print(xlsfilename) + try: + book.save(xlsfilename) + break + except TypeError: + QMessageBox.critical(self, "Error", "TypeError encountered. \ + Make sure you have openpyxl version 3.0.1 \ + installed. If the problem persists contact \ + the developers.")