23 lines
963 B
Diff
23 lines
963 B
Diff
From 353a5553a38d002a69a4fbafabf1e9ab50ff32c2 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
Date: Mon, 30 Dec 2013 00:01:00 -0500
|
|
Subject: [PATCH] systemd-python: fix listen_fds under Python 2
|
|
|
|
---
|
|
src/python-systemd/_daemon.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/python-systemd/_daemon.c b/src/python-systemd/_daemon.c
|
|
index c6db69f..3982e85 100644
|
|
--- a/src/python-systemd/_daemon.c
|
|
+++ b/src/python-systemd/_daemon.c
|
|
@@ -114,7 +114,7 @@ static PyObject* listen_fds(PyObject *self, PyObject *args, PyObject *keywds) {
|
|
#else
|
|
PyObject *obj = NULL;
|
|
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|O:_listen_fds",
|
|
- (char**) kwlist, &unset, &obj))
|
|
+ (char**) kwlist, &obj))
|
|
return NULL;
|
|
if (obj != NULL)
|
|
unset = PyObject_IsTrue(obj);
|