Remove line break in HTTP debug output that studio messes up anyways

This commit is contained in:
Lucien Greathouse
2018-08-26 22:17:30 -07:00
parent 284f423220
commit a69cbf45df

View File

@@ -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))