From 29d9c7a1a190331bc3c7c26536e6010af3e41651 Mon Sep 17 00:00:00 2001 From: Andrey Zhdanov Date: Tue, 12 Oct 2021 13:25:09 +0300 Subject: [PATCH] Markers file magic string is now prepended with two hashtags. Thus it will be treated as a comment by parsers that use hashtags for comments. --- invesalius/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invesalius/constants.py b/invesalius/constants.py index f36521d..cfe4acb 100644 --- a/invesalius/constants.py +++ b/invesalius/constants.py @@ -827,7 +827,7 @@ TREKKER_CONFIG = {'seed_max': 1, 'step_size': 0.1, 'min_fod': 0.1, 'probe_qualit 'write_interval': 50, 'numb_threads': '', 'max_lenth': 200, 'min_lenth': 20, 'max_sampling_step': 100} -MARKER_FILE_MAGICK_STRING = "INVESALIUS3_MARKER_FILE_" +MARKER_FILE_MAGICK_STRING = "##INVESALIUS3_MARKER_FILE_" CURRENT_MARKER_FILE_VERSION = 0 WILDCARD_MARKER_FILES = _("Marker scanner coord files (*.mkss)|*.mkss") -- libgit2 0.21.2