Remove a debug print
[bertos.git] / wizard / newParser.py
index e40bcf8292d5f9085a0bd0f96f46b16b9e8c7039..4b156449f5e6db7218885088938b43f26c36a244 100644 (file)
@@ -95,7 +95,6 @@ def getDefinitionBlocks(text):
         block.append(([comment], define))
     for define, comment in re.findall(r"#define\s*(.*?)\s*/{3}<\s*(.+?)\s*?(?:/{2,3}[^<].*?)?$", text, re.MULTILINE):
         block.append(([comment], define))
-    print block
     return block
 
 class ParseError(Exception):