]> granicus.if.org Git - python/commitdiff
Added missing semicolon.
authorEric Smith <eric@trueblade.com>
Tue, 5 May 2009 13:07:30 +0000 (13:07 +0000)
committerEric Smith <eric@trueblade.com>
Tue, 5 May 2009 13:07:30 +0000 (13:07 +0000)
Modules/posixmodule.c

index d38a4dbefd7489c467da1c193592ba4db94d88b3..87ab2fa7698fd36ed532a6aaea66913a667ae587 100644 (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