aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/importer.ml6
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/importer.ml b/bin/importer.ml
index f737a46..0d9b751 100644
--- a/bin/importer.ml
+++ b/bin/importer.ml
@@ -300,12 +300,10 @@ let () =
db conf.configuration
with
| Ok () ->
- Printf.printf "%c[?25h%c[1D%c[0K\n%!" (char_of_int 27)
- (char_of_int 27) (char_of_int 27);
+ Helpers.Console.close_cursor ();
Ok ()
| Error e ->
- Printf.printf "%c[?25h%c[1D%c[0K\n%!" (char_of_int 27)
- (char_of_int 27) (char_of_int 27);
+ Helpers.Console.close_cursor ();
print_endline @@ ImportErrors.repr_error e;
Ok ()));