diff --git a/Data/LanguageCodes.hs b/Data/LanguageCodes.hs
--- a/Data/LanguageCodes.hs
+++ b/Data/LanguageCodes.hs
@@ -1,7 +1,4 @@
-module Data.LanguageCodes
-       {-# WARNING "\nThis module code was generated by the functions in\ngenerator/Generate.hs (included in the tar.gz).\nPlease don't change this code."
-                   #-}
-       where
+module Data.LanguageCodes where
 import Prelude hiding (Ordering(..))
  
 data ISO639_1 = AA
diff --git a/generator/Generate.hs b/generator/Generate.hs
--- a/generator/Generate.hs
+++ b/generator/Generate.hs
@@ -13,7 +13,7 @@
 
 gen triples = prettyPrint $ 
     -- Module SrcLoc ModuleName [ModulePragma] (Maybe WarningText) (Maybe [ExportSpec]) [ImportDecl] [Decl] 
-    Module (SrcLoc n 0 0) (ModuleName n) [] (Just $ WarnText warn) Nothing 
+    Module (SrcLoc n 0 0) (ModuleName n) [] Nothing Nothing 
         [ImportDecl loc (ModuleName "Prelude") False False False Nothing Nothing
             (Just (True, [IThingAll (Ident "Ordering") ])) -- hidding Ordering because of the symbol LT
         ] 
@@ -21,9 +21,6 @@
     where
         n = "Data.LanguageCodes"
         loc = SrcLoc n 0 0 
-        warn = "\nThis module code was generated by the functions in\n" ++ 
-               "generator/Generate.hs (included in the tar.gz).\nPlease " ++
-               "don't change this code."
         iso639_1 = DataDecl loc DataType [] (Ident "ISO639_1") [] 
                    (codes languages_1) -- constructors
                    derivingClasses     -- deriving
diff --git a/iso639.cabal b/iso639.cabal
--- a/iso639.cabal
+++ b/iso639.cabal
@@ -1,5 +1,5 @@
 name:                iso639
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            ISO-639-1 language codes 
 homepage:            https://github.com/HugoDaniel/iso639
 bug-reports:         https://github.com/HugoDaniel/iso639/issues
