Added missing semicolon.

This commit is contained in:
Eric Smith 2009-05-05 13:07:30 +00:00
parent 705d9d5c41
commit 86a05ecdb5
1 changed files with 1 additions and 1 deletions

View File

@ -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