Skip to content

Commit

Permalink
Newline on end of assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
singpolyma committed Mar 23, 2013
1 parent 4f4eba0 commit c0abd64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Application.hs
Expand Up @@ -66,7 +66,7 @@ reportFor :: URI -> Connection -> RippleAddress -> Application
reportFor _ db adr req = case gen of
Just x -> do
time <- liftIO (fmap floor getPOSIXTime :: IO Integer)
string ok200 disp (show time ++ ": " ++ show adr ++ " " ++ T.unpack x)
string ok200 disp (show time ++ ": " ++ show adr ++ " " ++ T.unpack x ++ "\n")
Nothing -> do
assertions <- liftIO $ query db (fromString "SELECT `from`, `fromFingerprint`, `to`, `at`, `asserted`, `assertion` FROM assertions WHERE `to` = ?") [adr]
handleAcceptTypes [
Expand Down

0 comments on commit c0abd64

Please sign in to comment.