diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 2000f03edb..78541d1dc8 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -86,7 +86,7 @@ printobject(op, fp, flags) } if (ret == 0) { if (ferror(fp)) { - err_errno(RuntimeError); + err_errno(IOError); clearerr(fp); ret = -1; } |