removing print statement
diff --git a/c_gen/codegen.py b/c_gen/codegen.py
index 38c0596..3249747 100644
--- a/c_gen/codegen.py
+++ b/c_gen/codegen.py
@@ -105,7 +105,6 @@
     c_code_gen.gen_generics(tmp)
 
     with template_utils.open_output(install_dir, "loci/inc/loci/loci_classes.h") as out:
-        print tmp.getvalue()
         util.render_template(out, "loci_classes.h",
             legacy_code=tmp.getvalue())
 
diff --git a/c_gen/loxi_utils_legacy.py b/c_gen/loxi_utils_legacy.py
index 2e3347b..df93c2b 100644
--- a/c_gen/loxi_utils_legacy.py
+++ b/c_gen/loxi_utils_legacy.py
@@ -191,7 +191,7 @@
 
     # For each vendor, check for vendor specific action
     for exp in of_g.experimenter_name_to_id:
-        if cls.find("of_instruction_" + exp) == 0:
+        if cls.find("of_instruction" + exp) == 0:
             return True
 
     return False