Added missing semicolon.
This commit is contained in:
parent
705d9d5c41
commit
86a05ecdb5
|
@ -1928,7 +1928,7 @@ posix_lchmod(PyObject *self, PyObject *args)
|
||||||
if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
|
if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
|
||||||
&opath, &i))
|
&opath, &i))
|
||||||
return NULL;
|
return NULL;
|
||||||
path = bytes2str(opath, 1)
|
path = bytes2str(opath, 1);
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
res = lchmod(path, i);
|
res = lchmod(path, i);
|
||||||
Py_END_ALLOW_THREADS
|
Py_END_ALLOW_THREADS
|
||||||
|
|
Loading…
Reference in New Issue