From: Eric Smith Date: Tue, 5 May 2009 13:07:30 +0000 (+0000) Subject: Added missing semicolon. X-Git-Tag: v3.1b1~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86a05ecdb5eb91cf174e9b3c8adf0187e868aa68;p=thirdparty%2FPython%2Fcpython.git Added missing semicolon. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index d38a4dbefd74..87ab2fa7698f 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1928,7 +1928,7 @@ posix_lchmod(PyObject *self, PyObject *args) if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter, &opath, &i)) return NULL; - path = bytes2str(opath, 1) + path = bytes2str(opath, 1); Py_BEGIN_ALLOW_THREADS res = lchmod(path, i); Py_END_ALLOW_THREADS