diff --git a/ViennaRNAParser.cabal b/ViennaRNAParser.cabal
--- a/ViennaRNAParser.cabal
+++ b/ViennaRNAParser.cabal
@@ -5,7 +5,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             1.2.3
+version:             1.2.4
 synopsis:            Libary for parsing ViennaRNA package output
 description:         Currently contains parsers and datatypes for: RNAalifold, RNAdistance, RNAcofold, RNAfold, RNAplex, RNAup, RNAz.
 		     .
@@ -30,8 +30,8 @@
 
 source-repository this
   type:     git
-  location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.3
-  tag:      1.2.3
+  location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.4
+  tag:      1.2.4
 
 library
   -- Modules exported by the library.
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,4 +1,6 @@
 -*-change-log-*-
+1.2.4 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 8. July 2015
+        * Fixed surplus whitespace in RNAz parsing function
 1.2.3 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 7. July 2015
 	* Added lower case letters to allowed sequence characters
 1.2.2 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 4. July 2015
diff --git a/src/Bio/RNAzParser.hs b/src/Bio/RNAzParser.hs
--- a/src/Bio/RNAzParser.hs
+++ b/src/Bio/RNAzParser.hs
@@ -50,7 +50,7 @@
   _svmDecisionValue <-  parseRNAzDoubleField "SVM decision value:"
   _svmRNAClassProbability <- parseRNAzDoubleField "SVM RNA-class probability:"
   _prediction <- parseRNAzStringField "Prediction:"
-  _ <- optional (try (parseRNAzStringField " WARNING:"))
+  _ <- optional (try (parseRNAzStringField "WARNING:"))
   newline
   many1 (char '#') 
   newline
