diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-25T21·53+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-25T21·53+0100 |
commit | 561ed1fbbb624ddc51f5a97f4a81354e458e64cd (patch) | |
tree | 54ccf83cf15368b9ed22dc322258563cd4571022 /services/tazblog/blog/Main.hs | |
parent | 094aafecddc61f36de178205ba9bfd592dc3481f (diff) |
chore(tazblog): Remove i18n features r/63
The blog has been English only for a few years. Old entries that survived the migration to DNS will still be accessible.
Diffstat (limited to 'services/tazblog/blog/Main.hs')
-rw-r--r-- | services/tazblog/blog/Main.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/services/tazblog/blog/Main.hs b/services/tazblog/blog/Main.hs index 2842d1ee1b72..6074f96b7685 100644 --- a/services/tazblog/blog/Main.hs +++ b/services/tazblog/blog/Main.hs @@ -2,7 +2,6 @@ module Main where import Control.Applicative ((<$>), (<*>)) -import Locales (version) import Server (runBlog) import System.Environment (getEnv) @@ -20,6 +19,6 @@ readOpts = main :: IO () main = do - putStrLn ("TazBlog " ++ version ++ " in Haskell starting") opts <- readOpts + putStrLn ("tazblog starting on port " ++ (show $ blogPort opts)) runBlog (blogPort opts) (resourceDir opts) |