summaryrefslogtreecommitdiff
path: root/RISCOS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-17 07:54:55 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-09-17 07:54:55 +0000
commitca56dd4767617a2f5e946130de4beb06442a5cd5 (patch)
tree8697f0e83d6b4f3758eaf4b89abc944b6e6db71f /RISCOS
parentfd2f85d6e4e8abc9c943cf56cf45527d522c7882 (diff)
downloadcpython-git-ca56dd4767617a2f5e946130de4beb06442a5cd5.tar.gz
Issue #28139: Fix messed up indentation
Also update the classmethod and staticmethod doc strings and comments to match the RST documentation.
Diffstat (limited to 'RISCOS')
-rw-r--r--RISCOS/Modules/riscosmodule.c2
1 files changed, 1 insertions, 1 deletions
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;