You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2020/01/28 14:42:25 UTC

[openoffice] 03/08: pyuno: convert some tabs to spaces

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 8842d6ca47c03d8364dbb7b95b2dc2e54e3bccfa
Author: Damjan Jovanovic <da...@apache.org>
AuthorDate: Wed Jan 15 19:31:08 2020 +0200

    pyuno: convert some tabs to spaces
    
    Patch by: me
    
    (cherry picked from commit 37058acdf5d65adaf7ee2d972967a68be69f5cf1)
---
 main/pyuno/source/loader/pyuno_loader.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main/pyuno/source/loader/pyuno_loader.cxx b/main/pyuno/source/loader/pyuno_loader.cxx
index 6ba2d1c..4768290 100644
--- a/main/pyuno/source/loader/pyuno_loader.cxx
+++ b/main/pyuno/source/loader/pyuno_loader.cxx
@@ -119,8 +119,8 @@ static void setPythonHome ( const OUString & pythonHome )
 #else
     static wchar_t *wpath = Py_DecodeLocale(o.pData->buffer, NULL);
     if (wpath == NULL) {
-    	PyErr_SetString(PyExc_SystemError, "Cannot decode python home path");
-	return;
+        PyErr_SetString(PyExc_SystemError, "Cannot decode python home path");
+        return;
     }
     Py_SetPythonHome(wpath);
 #endif