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