diff --git a/src/xfel_calibrate/repeat.py b/src/xfel_calibrate/repeat.py
index b9b189d5fc0fb55eefdd9823a5ca2c9573383b26..9a25487e2544096ea651e4d203b73215f6d5c4b3 100644
--- a/src/xfel_calibrate/repeat.py
+++ b/src/xfel_calibrate/repeat.py
@@ -139,7 +139,7 @@ def main(argv=None):
         params_to_set['out_folder'] = out_folder
     update_notebooks_params(working_dir, params_to_set)
 
-    if args.report_path:
+    if args.report_to:
         report_to = args.report_to
     else:  # Default to saving report in output folder
         report_to = str(Path(out_folder, f'xfel-calibrate-repeat-{run_uuid}'))
diff --git a/webservice/messages.py b/webservice/messages.py
index dfd7b4b487a4519abb628b496c2ba33fecb1073a..540232e41ee5f130e8c3fca722a92befbb4c2587 100644
--- a/webservice/messages.py
+++ b/webservice/messages.py
@@ -39,5 +39,6 @@ class Success:
     START_CORRECTION_SIM = "SUCCESS: Simulated, not submitting jobs. Would do correction: proposal {}, run {}"
     START_CHAR_SIM = "SUCCESS: Simulated, not submitting jobs. Would do dark characterization: proposal {}, run {}"
     QUEUED = "SUCCESS: Queued proposal {}, run {} for offline calibration"
+    REPROD_QUEUED = "SUCCESS: Queued proposal {}, run {} for reproducing previous offline calibration"
     DONE_CORRECTION = "SUCCESS: Finished correction: proposal {}. run {}"
     DONE_CHAR = "SUCCESS: Finished dark characterization: proposal {}, run {}"
diff --git a/webservice/webservice.py b/webservice/webservice.py
index e727eb5d5407f2b6c8e97ba1111dfa7b5238b388..10add4fc235e0ba26c239e059903eef2df295882 100644
--- a/webservice/webservice.py
+++ b/webservice/webservice.py
@@ -1037,7 +1037,7 @@ class ActionsServer:
             )
             return msg.encode()
 
-        queued_msg = Success.QUEUED.format(proposal, [runnr])
+        queued_msg = Success.REPROD_QUEUED.format(proposal, [runnr])
         logging.debug(queued_msg)
 
         async def _continue():