diff --git a/platformio/builder/tools/piotarget.py b/platformio/builder/tools/piotarget.py index 2dfdf3d8..4d7c3a74 100644 --- a/platformio/builder/tools/piotarget.py +++ b/platformio/builder/tools/piotarget.py @@ -43,9 +43,8 @@ def PioClean(env, clean_all=False): def _clean_dir(path): clean_rel_path = _relpath(path) - print(f"Removing `{clean_rel_path}` folder...", end="") + print(f"Removing {clean_rel_path}") fs.rmtree(path) - print(" done!") build_dir = env.subst("$BUILD_DIR") libdeps_dir = env.subst("$PROJECT_LIBDEPS_DIR")