From 7e17151e69fcd86fd5cb90dd61ff55d2d017fee7 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 20 Feb 2012 15:28:57 -0400 Subject: [PATCH] revert hlint change broke a test --- Logs/Remote.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Logs/Remote.hs b/Logs/Remote.hs index c38a05c189..ccfb4bb31a 100644 --- a/Logs/Remote.hs +++ b/Logs/Remote.hs @@ -79,7 +79,7 @@ configUnEscape = unescape num = takeWhile isNumber s r = drop (length num) s rest = drop 1 r - ok = not (null num) && ":" `isPrefixOf` r + ok = not (null num) && ";" `isPrefixOf` r {- for quickcheck -} prop_idempotent_configEscape :: String -> Bool