Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 86a05ec

Browse files
committed
Added missing semicolon.
1 parent 705d9d5 commit 86a05ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1928,7 +1928,7 @@ posix_lchmod(PyObject *self, PyObject *args)
19281928
if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
19291929
&opath, &i))
19301930
return NULL;
1931-
path = bytes2str(opath, 1)
1931+
path = bytes2str(opath, 1);
19321932
Py_BEGIN_ALLOW_THREADS
19331933
res = lchmod(path, i);
19341934
Py_END_ALLOW_THREADS

0 commit comments

Comments
 (0)