From ba65a6ff84fb45bd7505d5792eac64615f88fb48 Mon Sep 17 00:00:00 2001 From: Martin Baeuml Date: Wed, 25 May 2011 00:58:37 +0200 Subject: [PATCH] dump yaml somewhat correctly --- sloth/annotations/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sloth/annotations/container.py b/sloth/annotations/container.py index 9235013..14067f9 100644 --- a/sloth/annotations/container.py +++ b/sloth/annotations/container.py @@ -154,7 +154,7 @@ class YAMLContainer(AnnotationContainer): def save(self, fname): f = open(fname, "w") - yaml.dump(self.annotations(), f, indent=4) + yaml.dump(self.annotations(), f) self.filename_ = fname class FeretContainer(AnnotationContainer):