From 9edd5ad5fc08b4173a08e697d1b1a2d2d64227eb Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Sat, 12 Jan 2019 17:19:02 -0200 Subject: [PATCH] Mute l10n in lines of Basic and Python code Change-Id: I8cebb9a0132d430242ae32be9b7fdac10e4e7da2 Reviewed-on: https://gerrit.libreoffice.org/66242 Tested-by: Jenkins Reviewed-by: Olivier Hallot --- source/text/sbasic/python/python_shell.xhp | 36 +++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/source/text/sbasic/python/python_shell.xhp b/source/text/sbasic/python/python_shell.xhp index 264cd34d91..194bc2fd60 100644 --- a/source/text/sbasic/python/python_shell.xhp +++ b/source/text/sbasic/python/python_shell.xhp @@ -26,27 +26,27 @@ Using a Basic macro: - Sub interpreter_console - ps = CreateUnoService("com.sun.star.util.PathSettings") - install_path = ConvertFromURL(ps.Module) - Shell( install_path + GetPathSeparator() + "python" ) - End Sub + Sub interpreter_console + ps = CreateUnoService("com.sun.star.util.PathSettings") + install_path = ConvertFromURL(ps.Module) + Shell( install_path + GetPathSeparator() + "python" ) + End Sub Using a Python macro: - # -*- coding: utf-8 -*- - from __future__ import unicode_literals - - import uno, os, subprocess - - def interpreter_console(): - ctx = XSCRIPTCONTEXT.getComponentContext() - smgr = ctx.getServiceManager() - ps = smgr.createInstanceWithContext("com.sun.star.util.PathSettings", ctx) - install_path = uno.fileUrlToSystemPath(ps.Module) - pgm = install_path + os.sep + "python" # Python shell/console path - subprocess.Popen(pgm) # Start Python interactive Shell - + # -*- coding: utf-8 -*- + from __future__ import unicode_literals + + import uno, os, subprocess + + def interpreter_console(): + ctx = XSCRIPTCONTEXT.getComponentContext() + smgr = ctx.getServiceManager() + ps = smgr.createInstanceWithContext("com.sun.star.util.PathSettings", ctx) + install_path = uno.fileUrlToSystemPath(ps.Module) + pgm = install_path + os.sep + "python" # Python shell/console path + subprocess.Popen(pgm) # Start Python interactive Shell + Usage: