commit | 593daf545bd9b7e7bcb27b498ecc6f36db9ae395 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Mon May 26 12:51:38 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Mon May 26 12:51:38 2008 +0000 |
tree | c0a57029b9ab0eb18a2bb4f8fd65f0817f1a1707 | |
parent | c3cb683d638e9d660c18a05293a576f98965166e [diff] [blame] |
Renamed PyString to PyBytes
diff --git a/Modules/syslogmodule.c b/Modules/syslogmodule.c index 9e1ed06..a515a17 100644 --- a/Modules/syslogmodule.c +++ b/Modules/syslogmodule.c
@@ -71,7 +71,7 @@ S_ident_o = new_S_ident_o; Py_INCREF(S_ident_o); - openlog(PyString_AsString(S_ident_o), logopt, facility); + openlog(PyBytes_AsString(S_ident_o), logopt, facility); Py_INCREF(Py_None); return Py_None;