From: Joe Wreschnig Date: Fri, 19 Mar 2010 05:46:15 +0000 (-0700) Subject: Debug check should not have been committed. X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=commitdiff_plain;h=5942c31cd998d1575cbc2d16f3103c676852572d Debug check should not have been committed. --- diff --git a/bulletml-to-bulletyaml b/bulletml-to-bulletyaml index ebe0e75..749ccde 100755 --- a/bulletml-to-bulletyaml +++ b/bulletml-to-bulletyaml @@ -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:])