mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Added missing semicolon.
This commit is contained in:
parent
705d9d5c41
commit
86a05ecdb5
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue