diff options
| author | David Strauss <david@davidstrauss.net> | 2012-09-06 16:53:51 -0700 |
|---|---|---|
| committer | David Strauss <david@davidstrauss.net> | 2012-09-06 16:53:51 -0700 |
| commit | 7f96f34f10c89ad0f62c58997f9ec542d9bbd255 (patch) | |
| tree | 93e60b3a25f4994a4ad0c09275a18f4606ebd434 | |
| parent | 7050e537b27400d2bff36721de5bea400a05ba93 (diff) | |
| download | python-systemd-7f96f34f10c89ad0f62c58997f9ec542d9bbd255.tar.gz | |
Fix for Python 3.
| -rw-r--r-- | systemd/_journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/_journal.c b/systemd/_journal.c index 8693978..b766ec6 100644 --- a/systemd/_journal.c +++ b/systemd/_journal.c @@ -126,7 +126,7 @@ static struct PyModuleDef module = { }; PyMODINIT_FUNC -PyInit_journal(void) +PyInit__journal(void) { return PyModule_Create(&module); } |
