From 91e263b6f7932b4f4357da455c7f938515416c0d Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Fri, 26 Nov 2021 02:07:50 -0500 Subject: [PATCH] add space between words in messages --- deepmd/env.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deepmd/env.py b/deepmd/env.py index 3adfc40528..f8088c69d4 100644 --- a/deepmd/env.py +++ b/deepmd/env.py @@ -233,7 +233,7 @@ def get_module(module_name: str) -> "ModuleType": "This deepmd-kit package was compiled with " "CXX11_ABI_FLAG=%d, but TensorFlow runtime was compiled " "with CXX11_ABI_FLAG=%d. These two library ABIs are " - "incompatible and thus an error is raised when loading %s." + "incompatible and thus an error is raised when loading %s. " "You need to rebuild deepmd-kit against this TensorFlow " "runtime." % ( TF_CXX11_ABI_FLAG, @@ -262,9 +262,9 @@ def get_module(module_name: str) -> "ModuleType": tf.version.VERSION, )) from e raise RuntimeError( - "This deepmd-kit package is inconsitent with TensorFlow" - "Runtime, thus an error is raised when loading %s." - "You need to rebuild deepmd-kit against this TensorFlow" + "This deepmd-kit package is inconsitent with TensorFlow " + "Runtime, thus an error is raised when loading %s. " + "You need to rebuild deepmd-kit against this TensorFlow " "runtime." % ( module_name, )) from e