summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2014-03-30 22:25:47 -0400
committerJoey Hess2014-03-30 22:25:47 -0400
commit912e61ce1f1fbc4ed8b761ca15166a53639cea67 (patch)
tree1119b77994e79b7c541abe49ad668e409a5756fb
parent4398327dd1fc23c0a47bd22acce722701cbc8fb8 (diff)
don't print property when starting
This caused problems when properties were nested with listProperties. Would print "outer ... inner ..." etc.
-rw-r--r--Property.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Property.hs b/Property.hs
index 9361de02..c37af3dc 100644
--- a/Property.hs
+++ b/Property.hs
@@ -98,8 +98,6 @@ ensureProperties' ps = ensure ps NoChange
where
ensure [] rs = return rs
ensure (l:ls) rs = do
- putStr $ propertyDesc l ++ "... "
- hFlush stdout
r <- ensureProperty l
clearFromCursorToLineBeginning
setCursorColumn 0