From 0ad00c0eda07d46de63919d86b4c87374e78daa7 Mon Sep 17 00:00:00 2001 From: Kirill Gelvan Date: Sun, 3 May 2020 17:51:05 +0300 Subject: [PATCH] fix typo in error message mossing -> missing, got confused by it for a second --- modelrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modelrunner.py b/modelrunner.py index 32913e8..cf34536 100644 --- a/modelrunner.py +++ b/modelrunner.py @@ -196,7 +196,7 @@ def evaluate(self): model_dirname = os.path.dirname(self.config.MODEL_PATH) else: model_dirname = None - print('Model directory is mossing') + print('Model directory is missing') exit(-1) ref_file_name = os.path.join(model_dirname, 'ref.txt')