From ca56dd4767617a2f5e946130de4beb06442a5cd5 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Sat, 17 Sep 2016 07:54:55 +0000 Subject: Issue #28139: Fix messed up indentation Also update the classmethod and staticmethod doc strings and comments to match the RST documentation. --- RISCOS/Modules/riscosmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RISCOS') diff --git a/RISCOS/Modules/riscosmodule.c b/RISCOS/Modules/riscosmodule.c index 4387383235..1049e65cc8 100644 --- a/RISCOS/Modules/riscosmodule.c +++ b/RISCOS/Modules/riscosmodule.c @@ -46,7 +46,7 @@ riscos_rename(PyObject *self, PyObject *args) { char *path1, *path2; if (!PyArg_ParseTuple(args, "ss:rename", &path1, &path2)) - return NULL; + return NULL; if (rename(path1,path2)) return PyErr_SetFromErrno(PyExc_OSError); Py_INCREF(Py_None); return Py_None; -- cgit v1.2.1