summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/buildsystem.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 90cc15c2..1a330568 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -53,11 +53,9 @@ class BuildSystem(object):
'''Return the text of an autodetected chunk morphology.'''
return '''
- {
- "name": "%(name)s",
- "kind": "chunk",
- "build-system": "%(bs)s"
- }
+ name: %(name)s
+ kind: chunk
+ build-system: %(bs)s
''' % {
'name': name,
'bs': self.name,