From 4e70a108f487c5747d7af214577b82cb2601efcb Mon Sep 17 00:00:00 2001 From: Mark Ganson TheMarkster <39143564+mwganson@users.noreply.github.com> Date: Fri, 17 Jul 2020 20:42:14 -0500 Subject: [PATCH] convert tab to spaces --- src/Gui/ApplicationPy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/ApplicationPy.cpp b/src/Gui/ApplicationPy.cpp index f9cb9166aa..5cfecafc10 100644 --- a/src/Gui/ApplicationPy.cpp +++ b/src/Gui/ApplicationPy.cpp @@ -1347,7 +1347,7 @@ PyObject* Application::sGetCommandInfo(PyObject * /*self*/, PyObject *args) std::string shortcutTxt = action->shortcut().toString().toStdString(); #if PY_MAJOR_VERSION >= 3 - PyObject* strMenuTxt = PyUnicode_FromString(menuTxt ? menuTxt : ""); + PyObject* strMenuTxt = PyUnicode_FromString(menuTxt ? menuTxt : ""); PyObject* strTooltipTxt = PyUnicode_FromString(tooltipTxt ? tooltipTxt : ""); PyObject* strWhatsThisTxt = PyUnicode_FromString(whatsThisTxt ? whatsThisTxt : ""); PyObject* strStatustipTxt = PyUnicode_FromString(statustipTxt ? statustipTxt : "");