-#!/usr/bin/python2.7
+#!/usr/bin/python3.4
# -*- coding: iso-8859-15 -*-
# $Id$
# $HeadURL$
def to_title(value):
"""Line 2237 of includes/Title.php says: $this->mTextform = str_replace( '_', ' ', $dbkey );
No check for None because a missing title is an error."""
- return value.replace(u'_', u' ')
+ return value.replace('_', ' ')