diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xml.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml.erl b/src/xml.erl index c7f1c0e1..aeb085ea 100644 --- a/src/xml.erl +++ b/src/xml.erl @@ -79,7 +79,7 @@ attrs_to_list(Attrs) -> [attr_to_list(A) || A <- Attrs]. attr_to_list({Name, Value}) -> - [$\s, crypt(Name), $=, $', crypt(Value), $']. + [$\s, Name, $=, $', crypt(Value), $']. crypt(S) when is_list(S) -> [case C of |