From c0c43ebc94385d05aeffd94670375718b8b4b1f5 Mon Sep 17 00:00:00 2001 From: Sebastian Riedel Date: Fri, 27 Oct 2023 18:49:44 +0200 Subject: [PATCH] Add an empty line between comments and cookies --- lib/Mojo/UserAgent/CookieJar.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Mojo/UserAgent/CookieJar.pm b/lib/Mojo/UserAgent/CookieJar.pm index e172892de8..4732c7b6f8 100644 --- a/lib/Mojo/UserAgent/CookieJar.pm +++ b/lib/Mojo/UserAgent/CookieJar.pm @@ -9,7 +9,7 @@ use Scalar::Util qw(looks_like_number); has [qw(file ignore)]; has max_cookie_size => 4096; -my $COMMENT = "# Netscape HTTP Cookie File\n# This file was generated by Mojolicious! Edit at your own risk.\n"; +my $COMMENT = "# Netscape HTTP Cookie File\n# This file was generated by Mojolicious! Edit at your own risk.\n\n"; sub add { my ($self, @cookies) = @_;