Skip to content
Snippets Groups Projects
Verified Commit d33845e8 authored by Kevin Morris's avatar Kevin Morris
Browse files

fix(mkpkglists): fix tuple return for non-mysql


Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
parent 89cdabda
No related branches found
No related tags found
No related merge requests found
Pipeline #12813 passed
......@@ -31,7 +31,7 @@ users_state = state_path(userfile)
def should_update(state: str, tablename: str) -> Tuple[bool, int]:
if aurweb.config.get("database", "backend") != "mysql":
return False
return (False, 0)
db_name = aurweb.config.get("database", "name")
conn = aurweb.db.Connection()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment