Skip to content

Commit

Permalink
Fixed issue 16. Had to filter underscores from the project name writt…
Browse files Browse the repository at this point in the history
…en to

the project cabal file.
  • Loading branch information
mightybyte committed Sep 1, 2010
1 parent a77fc64 commit 4e83df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Snap/Starter.hs
Expand Up @@ -48,7 +48,7 @@ setup projName tDir = do
else writeFile f c
insertProjName c = T.unpack $ T.replace
(T.pack "projname")
(T.pack projName) c
(T.pack $ filter (/='_') projName) c

------------------------------------------------------------------------------
initProject :: [String] -> IO ()
Expand Down

0 comments on commit 4e83df6

Please sign in to comment.