Debug check should not have been committed.
[python-bulletml.git] / bulletml-to-bulletyaml
index ebe0e75..749ccde 100755 (executable)
@@ -8,7 +8,7 @@ from bulletml import BulletML, bulletyaml
 def main(argv):
     for filename in argv:
         print "# Loading", filename
-        print yaml.dump(yaml.load(yaml.dump(BulletML.FromDocument(open(filename, "rU")))))
+        print yaml.dump(BulletML.FromDocument(open(filename, "rU")))
 
 if __name__ == "__main__":
     main(sys.argv[1:])