From 693102d6abb774ba3fe4221945ab0a9e3a347ec5 Mon Sep 17 00:00:00 2001 From: Kevin Tew Date: Tue, 28 Jan 2020 13:24:25 -0700 Subject: [PATCH] quote python3 in cxxtest/python/scripts/cxxtestgen so that script works correctly --- python/scripts/cxxtestgen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/scripts/cxxtestgen b/python/scripts/cxxtestgen index 4fb2d79..5aff697 100755 --- a/python/scripts/cxxtestgen +++ b/python/scripts/cxxtestgen @@ -11,7 +11,7 @@ except ImportError: if sys.version_info < (3,0): sys.path.append( os.path.abspath( os.path.sep.join([currdir, '..']) ) ) else: - sys.path.append( os.path.abspath( os.path.sep.join([currdir, '..', python3]) ) ) + sys.path.append( os.path.abspath( os.path.sep.join([currdir, '..', 'python3']) ) ) import cxxtest.cxxtestgen