Update src/utils/migration.py

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Eric Hare 2025-12-12 08:29:36 -08:00 committed by GitHub
parent da7ab628a3
commit 2e377d2c78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -231,7 +231,7 @@ def perform_migration() -> Dict[str, bool]:
marker_file = get_migration_marker_file()
try:
marker_file.parent.mkdir(parents=True, exist_ok=True)
marker_file.write_text(f"Migration completed successfully\n")
marker_file.write_text("Migration completed successfully\n")
logger.info("Migration marker file created")
except Exception as e:
logger.warning(f"Failed to create migration marker file: {e}")