diff --git a/condainer/condainer.py b/condainer/condainer.py
index ea4828b8c765c9c998c86fe7b3f71734ff46c87f..558a951e99331a7e19859b00db107c3775ae9c72 100644
--- a/condainer/condainer.py
+++ b/condainer/condainer.py
@@ -123,7 +123,7 @@ def write_deactivate_script(cfg):
         fp.write("# usage: source deactivate\n")
         cmd = "conda deactivate"
         fp.write(f"{cmd}\n")
-        fp.write("echo \"Hint: Run  cnd umount  now in case the environment is not activated in any other shell.\"\n")
+        fp.write("echo \"Hint: In case the environment is not activated in any other shell, please run now: cnd umount\"\n")
     os.chmod("deactivate", 0o755)
 
 
diff --git a/setup.py b/setup.py
index fd9cf6c353e276350710b9e9ff1e377024530303..4e7e04f0f208a35bdfcae629dc62bc2a0baf4ed4 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ long_description = (base_dir / "README.md").read_text()
 
 setup(
     name='condainer',
-    version='0.1.4',
+    version='0.1.5',
     description='Build, manage, and run compressed squashfs images of Conda environments transparently on HPC or elsewhere.',
     long_description = long_description,
     author='Klaus Reuter',