Shortcode backend

This commit is contained in:
2023-05-30 23:12:28 -07:00
parent e9258c34f6
commit fc778a33dd
2 changed files with 50 additions and 9 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
from os import stat, getuid
def check_sanity():
dependancies = ['data/seq.db']
dependancies = ['data/seq.db', "data/shortcodes.db"]
current_uid = getuid()
for dependancy in dependancies:
if stat(dependancy).st_uid != current_uid: