From 8cf6a1e8f683dfe391bc61a4e843906e49fbaf1f Mon Sep 17 00:00:00 2001
From: mattminder <myfiles@Mattus-MacBook-Pro.local>
Date: Fri, 8 May 2020 16:57:20 +0200
Subject: [PATCH] Exception handling when openpyxl 3.0.2 is installed

---
 GUI_main.py | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/GUI_main.py b/GUI_main.py
index 1e78f5c..987e57e 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.")
 
 
 
-- 
GitLab