diff --git a/source/_static/code/fasta_iterator.py b/source/_static/code/fasta_iterator.py
index 2baeb85efa2c4810778a58a4fb866caaf42511a4..993ed85a23202b80e8853ebab4eadfbe7b344319 100644
--- a/source/_static/code/fasta_iterator.py
+++ b/source/_static/code/fasta_iterator.py
@@ -17,7 +17,6 @@ def fasta_iter(fasta_file):
       # we know they alternate.
       group = (x[1] for x in groupby(fasta_file , lambda line: line.startswith(">")))
       for header in group:
-         print header
          # drop the ">"
          header = header.next()[1:].strip()
          header = header.split()