projects
/
python-bulletml.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e753939
)
Debug check should not have been committed.
author
Joe Wreschnig
<joe.wreschnig@gmail.com>
Fri, 19 Mar 2010 05:46:15 +0000
(22:46 -0700)
committer
Joe Wreschnig
<joe.wreschnig@gmail.com>
Fri, 19 Mar 2010 05:46:15 +0000
(22:46 -0700)
bulletml-to-bulletyaml
patch
|
blob
|
history
diff --git
a/bulletml-to-bulletyaml
b/bulletml-to-bulletyaml
index ebe0e75c8ad0e12d2fa18ed451b316a5998ae8d5..749ccde1053c09b79f1c60eeef626be56e35abff 100755
(executable)
--- 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:])