summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@src.gnome.org>2002-06-14 19:50:33 +0000
committerNalin Dahyabhai <nalin@src.gnome.org>2002-06-14 19:50:33 +0000
commite2a8889005ad4c2deb37babb78a54d9e263a0c99 (patch)
tree9b0259985a0bfe4038f47959fef523ace97bdea7 /python
parentd8dfa0f809acb46e46e5f203e398a42f50df0856 (diff)
downloadvte-e2a8889005ad4c2deb37babb78a54d9e263a0c99.tar.gz
Fix arg list mismatch.
* python/vte.override: Fix arg list mismatch.
Diffstat (limited to 'python')
-rw-r--r--python/vte.override2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vte.override b/python/vte.override
index a2fda970..e0be7931 100644
--- a/python/vte.override
+++ b/python/vte.override
@@ -19,7 +19,7 @@ _wrap_vte_terminal_fork_command(PyGObject * self, PyObject * args,
{
gchar **argv = NULL, **envv = NULL;
gchar *command = NULL;
- static char *kwlist[] = { "command", "argv", NULL };
+ static char *kwlist[] = { "command", "argv", "envv", NULL };
PyObject *py_argv = NULL, *py_envv = NULL;
int i, n_args, n_envs;
pid_t pid;