From dc96dce02d9674b298fd66357177817d324f74f1 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Tue, 10 Jan 2023 17:47:33 +1100 Subject: [PATCH] remove white space on status message --- job.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/job.py b/job.py index 98ec097..b746815 100644 --- a/job.py +++ b/job.py @@ -314,7 +314,7 @@ def CheckForJobs(): print( f"called: /checkforjobs -- num={num}" ) sts=[] for msg in PA_JobManager_Message.query.all(): - u='Job # ' + str(msg.job_id) + ': ' + u='Job #' + str(msg.job_id) + ': ' sts.append( { 'message': u+msg.message, 'alert': msg.alert, 'job_id': msg.job_id, 'persistent': msg.persistent, 'cant_close': msg.cant_close } ) return make_response( jsonify( num_active_jobs=num, sts=sts ) )