Debug check should not have been committed.
authorJoe Wreschnig <joe.wreschnig@gmail.com>
Fri, 19 Mar 2010 05:46:15 +0000 (22:46 -0700)
committerJoe Wreschnig <joe.wreschnig@gmail.com>
Fri, 19 Mar 2010 05:46:15 +0000 (22:46 -0700)
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:])