From 60dc1e51d9f50c301a6adbb8bc6b109d31b83758 Mon Sep 17 00:00:00 2001 From: Alan Garny Date: Wed, 30 Oct 2019 11:21:17 +0900 Subject: [PATCH] Python: some minor cleaning up. --- .../tests/data/cli/unknown_command_with_sample_tools.out | 6 +++--- .../tests/data/cli/unknown_command_without_sample_tools.out | 6 +++--- .../miscellaneous/JupyterKernel/src/jupyterkernelplugin.cpp | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_with_sample_tools.out b/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_with_sample_tools.out index 24ab6c6fcc..084ed7ada4 100644 --- a/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_with_sample_tools.out +++ b/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_with_sample_tools.out @@ -16,11 +16,11 @@ Commands supported by the CellMLTools plugin: * Validate : validate -Commands supported by the Jupyter kernel plugin: - * Display the commands supported by the Jupyter kernel plugin: +Commands supported by the JupyterKernel plugin: + * Display the commands supported by the JupyterKernel plugin: help * Start the OpenCOR Jupyter kernel: - kernel + kernel Commands supported by the Python shell plugin: * Display the commands supported by the plugin: diff --git a/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_without_sample_tools.out b/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_without_sample_tools.out index 9cf862bec8..fde7e0dea4 100644 --- a/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_without_sample_tools.out +++ b/src/plugins/miscellaneous/Core/tests/data/cli/unknown_command_without_sample_tools.out @@ -16,11 +16,11 @@ Commands supported by the CellMLTools plugin: * Validate : validate -Commands supported by the Jupyter kernel plugin: - * Display the commands supported by the Jupyter kernel plugin: +Commands supported by the JupyterKernel plugin: + * Display the commands supported by the JupyterKernel plugin: help * Start the OpenCOR Jupyter kernel: - kernel + kernel Commands supported by the Python shell plugin: * Display the commands supported by the plugin: diff --git a/src/plugins/miscellaneous/JupyterKernel/src/jupyterkernelplugin.cpp b/src/plugins/miscellaneous/JupyterKernel/src/jupyterkernelplugin.cpp index fec326a222..4d64bfd94a 100644 --- a/src/plugins/miscellaneous/JupyterKernel/src/jupyterkernelplugin.cpp +++ b/src/plugins/miscellaneous/JupyterKernel/src/jupyterkernelplugin.cpp @@ -89,7 +89,7 @@ void JupyterKernelPlugin::runHelpCommand() std::cout << " * Display the commands supported by the JupyterKernel plugin:" << std::endl; std::cout << " help" << std::endl; std::cout << " * Start the OpenCOR Jupyter kernel:" << std::endl; - std::cout << " kernel " << std::endl; + std::cout << " kernel " << std::endl; } //==============================================================================