# HG changeset patch # User timeless # Date 2015-12-31 08:17:15 # Node ID 90e3c5129226893b6a410fb82e690bbd9af99fff # Parent b502138f5faa0db643e6ea9ae5464514974d11ad cleanup: remove superfluous space after space after equals (C) diff --git a/mercurial/parsers.c b/mercurial/parsers.c --- a/mercurial/parsers.c +++ b/mercurial/parsers.c @@ -1840,7 +1840,7 @@ static PyObject *index_m_get(indexObject if (node_check(val, &node, &nodelen) == -1) return NULL; rev = index_find_node(self, node, nodelen); - if (rev == -3) + if (rev == -3) return NULL; if (rev == -2) Py_RETURN_NONE;