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 ) )