summaryrefslogtreecommitdiff
path: root/buildstream/project.py
diff options
context:
space:
mode:
authorAndrew Leeming <andrew.leeming@codethink.co.uk>2017-01-03 16:05:28 +0000
committerAndrew Leeming <andrew.leeming@codethink.co.uk>2017-01-04 13:56:31 +0000
commita9bedf6ec51d59f1be23ed6ee62b6c2dfadb586c (patch)
tree7f08270f89f850faae2ca0478fdee5ab0d28e1ee /buildstream/project.py
parentdfd6a6599b2b9886dca68de5300283fc3d78fb00 (diff)
downloadbuildstream-a9bedf6ec51d59f1be23ed6ee62b6c2dfadb586c.tar.gz
Renaming root project configuration file from project.yaml to project.conf for extra clarity
Diffstat (limited to 'buildstream/project.py')
-rw-r--r--buildstream/project.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/project.py b/buildstream/project.py
index b9c181b7c..1853b0256 100644
--- a/buildstream/project.py
+++ b/buildstream/project.py
@@ -24,7 +24,7 @@ The :class:`.Project` object holds all of the project settings from
the project configuration file including the project directory it
was loaded from.
-The project configuration file should be named ``project.yaml`` and
+The project configuration file should be named ``project.conf`` and
be located at the project root. It holds information such as Source
aliases relevant for the sources used in the given project as well as
overrides for the configuration of element types used in the project.
@@ -96,7 +96,7 @@ class Project():
def _load(self):
- projectfile = os.path.join(self.directory, "project.yaml")
+ projectfile = os.path.join(self.directory, "project.conf")
config = _yaml.load(_site.default_project_config)
project_conf = _yaml.load(projectfile)