diff --git a/flatpak-mainfest.yaml b/flatpak-mainfest.json
similarity index 95%
rename from flatpak-mainfest.yaml
rename to flatpak-mainfest.json
index 627910f..970c0d1 100644
--- a/flatpak-mainfest.yaml
+++ b/flatpak-mainfest.json
@@ -4,9 +4,20 @@
   "runtime-version": "23.08",
   "sdk": "org.freedesktop.Sdk",
   "name": "com.ione15.ion_todo_planner",
+  "buildsystem": "simple",
   "command": "main.py",
-  "modules": [
+  "build-commands": [
+      "pip3 install --prefix=${FLATPAK_DEST} ."
+    ],
+  "sources": [
     {
+      "type": "git",
+      "url": "https://github.com/iwalton3/tkinter-standalone",
+      "commit": "d9cb97c5bd4f814c73678366e0e48220776b6ad3"
+    }
+  ],
+  "modules": [
+      {
       "name": "main",
       "buildsystem": "simple",
       "build-commands": [
@@ -17,20 +28,8 @@
           "type": "file",
           "path": "main.py"
         }
-      ],
-      "name": "tkinter",
-  "buildsystem": "simple",
-  "build-commands": [
-      "pip3 install --prefix=${FLATPAK_DEST} ."
-  ],
-  "sources": [
-    {
-      "type": "git",
-      "url": "https://github.com/iwalton3/tkinter-standalone",
-      "commit": "d9cb97c5bd4f814c73678366e0e48220776b6ad3"
-    }
-  ],
-  "modules": [
+      ]
+    },
     {
       "name": "tcl8.6",
       "sources": [
@@ -60,7 +59,4 @@
       ]
     }
   ]
-    }
-  ]
 }
-
diff --git a/main.py b/main.py
index abd6a75..411d1e9 100755
--- a/main.py
+++ b/main.py
@@ -18,6 +18,7 @@ from datetime import datetime
 import time
 import tkinter as tk
 from collections import OrderedDict
+print("alive")
 
 con = sqlite3.connect("todo.db")
 cur = con.cursor()