summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-05-05 13:07:30 (GMT)
committerEric Smith <eric@trueblade.com>2009-05-05 13:07:30 (GMT)
commit86a05ecdb5eb91cf174e9b3c8adf0187e868aa68 (patch)
tree03a6020fd86a18a1e4316986105008bab60ceb51 /Modules/posixmodule.c
parent705d9d5c41578e2b8755b4333f8c93d04554c5aa (diff)
downloadcpython-86a05ecdb5eb91cf174e9b3c8adf0187e868aa68.zip
cpython-86a05ecdb5eb91cf174e9b3c8adf0187e868aa68.tar.gz
cpython-86a05ecdb5eb91cf174e9b3c8adf0187e868aa68.tar.bz2
Added missing semicolon.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index d38a4db..87ab2fa 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