scripts: twister: clarify output directory renaming message

Change "Renaming output directory to" message to "Renaming previous
output directory to" to make it clearer that twister is renaming the
existing directory, not the current output directory.

This helps avoid confusion for new twister users who might think the
current output is going to the renamed directory.

Signed-off-by: Afonso Oliveira <afonsoo@synopsys.com>
diff --git a/scripts/pylib/twister/twisterlib/twister_main.py b/scripts/pylib/twister/twisterlib/twister_main.py
index 5d2fecc..5e3cf1e 100644
--- a/scripts/pylib/twister/twisterlib/twister_main.py
+++ b/scripts/pylib/twister/twisterlib/twister_main.py
@@ -61,7 +61,7 @@
             for i in range(1, 100):
                 new_out = options.outdir + f".{i}"
                 if not os.path.exists(new_out):
-                    print(f"Renaming output directory to {new_out}")
+                    print(f"Renaming previous output directory to {new_out}")
                     shutil.move(options.outdir, new_out)
                     break
             else: