diff options
| -rw-r--r-- | src/Propellor/Engine.hs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Propellor/Engine.hs b/src/Propellor/Engine.hs index ed886ef7..a3fc0f30 100644 --- a/src/Propellor/Engine.hs +++ b/src/Propellor/Engine.hs @@ -45,7 +45,5 @@ ensureProperty = catchPropellor . propertySatisfy fromHost :: [Host] -> HostName -> Propellor a -> Propellor (Maybe a) fromHost l hn getter = case findHost l hn of Nothing -> return Nothing - Just h -> liftIO $ do - print ("fromHost", hn, "using", h) - Just <$> - runReaderT (runWithHost getter) h + Just h -> liftIO $ Just <$> + runReaderT (runWithHost getter) h |
