7 lines
310 B
Python
7 lines
310 B
Python
"""Fix DB_PATH in self_todo_executor.py"""
|
|
path = '/home/hmo/.hermes/profiles/position-analyst/scripts/self_todo_executor.py'
|
|
content = open(path).read()
|
|
content = content.replace('projects/MoFin/data', 'web-dashboard/data')
|
|
open(path, 'w').write(content)
|
|
print("DB_PATH fixed to web-dashboard/data/mofin.db")
|