diff --git a/Text/Tabular/AsciiArt.hs b/Text/Tabular/AsciiArt.hs
--- a/Text/Tabular/AsciiArt.hs
+++ b/Text/Tabular/AsciiArt.hs
@@ -36,7 +36,7 @@
  where
   helper = either hsep (uncurry padLeft)
   hsep :: Properties -> String
-  hsep NoLine     = ""
+  hsep NoLine     = " "
   hsep SingleLine = " | "
   hsep DoubleLine = " || "
 
@@ -54,7 +54,7 @@
  where
   helper          = either vsep dashes
   dashes (i,_)    = replicate i sep
-  vsep NoLine     = ""
+  vsep NoLine     = [sep]
   vsep SingleLine = sep : "+"  ++ [sep]
   vsep DoubleLine = sep : "++" ++ [sep]
 
diff --git a/tabular.cabal b/tabular.cabal
--- a/tabular.cabal
+++ b/tabular.cabal
@@ -1,5 +1,5 @@
 name:                tabular
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            Two-dimensional data tables with rendering functions
 description:         Tabular provides a Haskell representation of two-dimensional
                      data tables, the kind that you might find in a spreadsheet or
