From a69cbf45df77581b5c7ee5b5fd16bcf7898716b7 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sun, 26 Aug 2018 22:17:30 -0700 Subject: [PATCH] Remove line break in HTTP debug output that studio messes up anyways --- plugin/src/Http.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/src/Http.lua b/plugin/src/Http.lua index 57cedc15..2087cee7 100644 --- a/plugin/src/Http.lua +++ b/plugin/src/Http.lua @@ -25,7 +25,7 @@ function Http.get(url) end) if ok then - dprint("\t", result, "\n") + dprint("\t", result) resolve(HttpResponse.new(result)) else reject(HttpError.fromErrorString(result)) @@ -44,7 +44,7 @@ function Http.post(url, body) end) if ok then - dprint("\t", result, "\n") + dprint("\t", result) resolve(HttpResponse.new(result)) else reject(HttpError.fromErrorString(result))