[nautilus-python: 1/2] Fix argv output



commit edc97a4986ec246390ea8027b4115ce1ed7f6400
Author: Adam Plumb <adamplumb gmail com>
Date:   Sun Mar 24 15:16:30 2019 -0400

    Fix argv output

 src/nautilus-python.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-python.c b/src/nautilus-python.c
index b1fa4f2..ff9944b 100644
--- a/src/nautilus-python.c
+++ b/src/nautilus-python.c
@@ -167,9 +167,9 @@ nautilus_python_init_python (void) {
     
     debug("PySys_SetArgv");
 #if PY_MAJOR_VERSION >= 3
-    wchar_t *argv[] = { L"thunar", NULL };
+    wchar_t *argv[] = { L"nautilus", NULL };
 #else
-    char *argv[] = { "thunar", NULL };
+    char *argv[] = { "nautilus", NULL };
 #endif
     PySys_SetArgv(1, argv);
     if (PyErr_Occurred()) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]