From: Fred Drake Date: Tue, 9 Feb 1999 16:03:31 +0000 (+0000) Subject: do_cmd_maketitle(): Small nit in creating the "title page". X-Git-Tag: v1.5.2b2~100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d1f81ea220bd572899afd70f62f59bc732f1db5;p=python do_cmd_maketitle(): Small nit in creating the "title page". --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 883bd3ec95..48cf0dd080 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -863,10 +863,11 @@ sub do_cmd_maketitle { if ($t_author) { if ($t_authorURL) { my $href = translate_commands($t_authorURL); - $href = make_named_href('author', $href, "${t_author}"); + $href = make_named_href('author', $href, + "$t_author"); $the_title .= "\n

$href

"; } else { - $the_title .= "\n

$t_author

"; + $the_title .= ("\n

$t_author

"); } } else { write_warnings("\nThere is no author for this document."); } if ($t_institute) {