Files
xiaoxia-saas/fix_script.py
T
Xiaoxia AI 2cda8dec39
Deploy / Deploy Staging (push) Failing after 9s
Deploy / Deploy Production (push) Has been skipped
Tests / test (push) Failing after 14s
Tests / lint (push) Failing after 15s
fix: connect API to tracker.db via SQLite repository
2026-06-17 13:21:38 +08:00

9 lines
451 B
Python

content = open('F:/openclaw-saas/scripts/init_tracker_data.py', 'r', encoding='utf-8').read()
content = content.replace('"title":', '"name":')
content = content.replace('"URGENT"', '"urgent"')
content = content.replace('"HIGH"', '"high"')
content = content.replace('"MEDIUM"', '"medium"')
content = content.replace('"LOW"', '"low"')
open('F:/openclaw-saas/scripts/init_tracker_data.py', 'w', encoding='utf-8').write(content)
print('Fixed all fields')