From 7509b192e7fdcff5cabc34249ea644f961d4ea88 Mon Sep 17 00:00:00 2001 From: Ryan Greenup Date: Fri, 17 Jul 2020 03:27:22 +1000 Subject: [PATCH] [FIX] Wrapped in '' but NOT \n --- bin/tags/yaml-tags-to-TMSU.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tags/yaml-tags-to-TMSU.js b/bin/tags/yaml-tags-to-TMSU.js index d685694..f2e05cd 100644 --- a/bin/tags/yaml-tags-to-TMSU.js +++ b/bin/tags/yaml-tags-to-TMSU.js @@ -84,7 +84,7 @@ for (let j = 0; j < noteFilePathList.length; j++) { process.stdout.write("tmsu tag") process.stdout.write(" ") - process.stdout.write(" '" + filePath + "'\n") + process.stdout.write(" '" + filePath + "'") process.stdout.write(" ") process.stdout.write(" '" + thetags[i] + "'\n") }