]> gitweb.michael.orlitzky.com - dead/halcyon.git/blobdiff - src/Twitter/Http.hs
Whitespace cleanup.
[dead/halcyon.git] / src / Twitter / Http.hs
index ddd68284ae91d22f94b7e5beb90a433630a51804..2fe24bdd7c9579738b0d7a05eaa7a94d03b4eaa2 100644 (file)
@@ -4,7 +4,7 @@ where
 import Network.Curl
 import System.IO (hPutStrLn, stderr)
 
---    
+--
 -- http://dev.twitter.com/doc/get/statuses/user_timeline
 --
 user_timeline_url :: String -> String
@@ -19,7 +19,7 @@ user_new_statuses_url username last_status_id =
     concat [ user_timeline_url username,
              "&since_id=" ++ (show last_status_id) ]
 
-                               
+
 get_user_timeline :: String -> IO (Maybe String)
 get_user_timeline username = do
   let uri = (user_timeline_url username)
@@ -33,7 +33,7 @@ get_user_new_statuses username last_status_id = do
   new_statuses <- (http_get uri)
   return new_statuses
 
-         
+
 http_get :: String -> IO (Maybe String)
 http_get uri = withCurlDo $ do
   resp <- curlGetString uri [CurlTimeout 45]