From aed933cf7d04ff00d92846b602e930d4e70e36d6 Mon Sep 17 00:00:00 2001
From: Jiao Lin <jiao.lin@gmail.com>
Date: Mon, 10 Dec 2018 12:12:03 -0500
Subject: [PATCH] Refs #24287. fixing a bug when mantidPlotPath is None.

---
 Testing/SystemTests/scripts/InstallerTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Testing/SystemTests/scripts/InstallerTests.py b/Testing/SystemTests/scripts/InstallerTests.py
index d1300e464aa..5822173ca4c 100644
--- a/Testing/SystemTests/scripts/InstallerTests.py
+++ b/Testing/SystemTests/scripts/InstallerTests.py
@@ -54,7 +54,7 @@ if options.doInstall:
     log("Installing package '%s'" % installer.mantidInstaller)
     try:
         installer.install()
-        log("Application path " + installer.mantidPlotPath)
+        log("Application path: %r" % installer.mantidPlotPath)
         installer.no_uninstall = False
     except Exception as err:
         scriptfailure("Installing failed. "+str(err))
-- 
GitLab