diff --git a/reanimate-svg.cabal b/reanimate-svg.cabal
--- a/reanimate-svg.cabal
+++ b/reanimate-svg.cabal
@@ -1,5 +1,5 @@
 name:                reanimate-svg
-version:             0.9.3.0
+version:             0.9.3.1
 synopsis:            SVG file loader and serializer
 description:
   reanimate-svg provides types representing a SVG document,
diff --git a/src/Graphics/SvgTree/PathParser.hs b/src/Graphics/SvgTree/PathParser.hs
--- a/src/Graphics/SvgTree/PathParser.hs
+++ b/src/Graphics/SvgTree/PathParser.hs
@@ -156,13 +156,7 @@
   EndPath -> showChar 'Z'
   where
     serializeArg (a, b, c, d, e, V2 x y) =
-        -- ppD a . showChar ' ' .
-        -- ppD b . showChar ' ' .
-        -- ppD c . showChar ' ' .
-        -- shows (fromEnum d) . showChar ' ' .
-        -- shows (fromEnum e) . showChar ' ' .
-        -- ppD x . showChar ',' .
-        -- ppd y
+        showString $
         printf "%s %s %s %d %d %s,%s"
           (ppD a) (ppD b) (ppD c) (fromEnum d) (fromEnum e) (ppD x) (ppD y)
     serializeArgs = unwordsS . fmap serializeArg
