From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id B41171FE4E; Fri, 1 Jul 2016 02:20:31 +0000 (UTC) Date: Fri, 1 Jul 2016 02:20:31 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/2] www_stream: fix stupid typo :x Message-ID: <20160701022031.GA2105@dcvr.yhbt.net> References: <20160701011703.16578-1-e@80x24.org> <20160701021522.GA31128@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160701021522.GA31128@dcvr.yhbt.net> List-Id: Note to self: remember to run tests Fixes: 52052329aced ("git: allow cloning from the URL root, too") --- lib/PublicInbox/WwwStream.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm index 87a461e..fdab4da 100644 --- a/lib/PublicInbox/WwwStream.pm +++ b/lib/PublicInbox/WwwStream.pm @@ -87,7 +87,7 @@ sub _html_end { '- ' . $desc, $urls, 'Archived served using code from public-inbox:', - "\tgit clone $url public-inbox", + qq(\tgit clone $url public-inbox), ).''; } -- EW