From 50a3cc57adaff60986edc43bd4092a264904f49c Mon Sep 17 00:00:00 2001 From: Matt C Date: Fri, 12 Jan 2018 18:18:52 +0000 Subject: [PATCH] Fixed missing newline --- src/core/operations/PGP.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/PGP.js b/src/core/operations/PGP.js index 87ee53d9..7c691ad8 100755 --- a/src/core/operations/PGP.js +++ b/src/core/operations/PGP.js @@ -324,7 +324,7 @@ const PGP = { text += [ `PGP fingerprint: ${km.get_pgp_fingerprint().toString("hex")}`, `Signed on ${new Date(ds.sig.hashed_subpackets[0].time * 1000).toUTCString()}`, - "----------------------------------" + "----------------------------------\n" ].join("\n"); text += unboxedLiterals.toString(); return text.trim();