From 3089bfa5a0acda1db85e00d552333fdbbd143c9d Mon Sep 17 00:00:00 2001 From: Microtechno9000 Date: Thu, 28 Dec 2023 22:37:56 +1030 Subject: [PATCH] debug comment typo --- arm/ui/settings/DriveUtils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm/ui/settings/DriveUtils.py b/arm/ui/settings/DriveUtils.py index bb650cb43..3f1a23209 100644 --- a/arm/ui/settings/DriveUtils.py +++ b/arm/ui/settings/DriveUtils.py @@ -149,8 +149,8 @@ def update_drive_job(job): drive = SystemDrives.query.filter_by(mount=job.devpath).first() drive.new_job(job.job_id) app.logger.debug(f"Updating Drive: ['{drive.name}'|'{drive.mount}']" - f"Current Job: [{drive.job_id_current}" - f"Previous Job: [{drive.job_id_previous}]") + f" Current Job: [{drive.job_id_current}]" + f" Previous Job: [{drive.job_id_previous}]") try: db.session.commit() logging.debug("Database update with new Job ID to associated drive")