From 4bfce8f81f86bc0303fb049f6a68351742336aaa Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 3 Oct 2011 19:35:07 -0400 Subject: [PATCH] fix formatting --- Objects/unicodeobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 6d111bf9267..70529c6c92c 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1362,8 +1362,8 @@ unicode_resize(PyObject **p_unicode, Py_ssize_t length) return -1; _PyUnicode_CheckConsistency(*p_unicode); return 0; - } else - return resize_inplace((PyUnicodeObject*)unicode, length); + } + return resize_inplace((PyUnicodeObject*)unicode, length); } int