aboutsummaryrefslogtreecommitdiff
path: root/lib/xml_builder.ex
diff options
context:
space:
mode:
authorThog <thog92@hotmail.fr>2017-11-19 02:22:07 +0100
committerThog <thog92@hotmail.fr>2017-11-19 02:22:07 +0100
commit59770c3f5c9a038dbde6b2e1cd1551a7b8f1672b (patch)
tree178c9f13d02a3a168e1755f8dcbcde0d429315f4 /lib/xml_builder.ex
parented3403ad8be255480d7e41f899d74fe9e5ef3f84 (diff)
downloadpleroma-59770c3f5c9a038dbde6b2e1cd1551a7b8f1672b.tar.gz
Fix all compilation warnings
Diffstat (limited to 'lib/xml_builder.ex')
-rw-r--r--lib/xml_builder.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xml_builder.ex b/lib/xml_builder.ex
index c6d144903..52358c437 100644
--- a/lib/xml_builder.ex
+++ b/lib/xml_builder.ex
@@ -37,6 +37,6 @@ defmodule Pleroma.XmlBuilder do
"#{attribute}=\"#{value}\""
end |> Enum.join(" ")
- [tag, attributes_string] |> Enum.join(" ") |> String.strip
+ [tag, attributes_string] |> Enum.join(" ") |> String.trim
end
end