summaryrefslogtreecommitdiff
path: root/morphlib/definitions_repo.py
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-06-18 16:56:51 +0100
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-06-22 13:12:18 +0000
commit26dce1d6ef83294c184fc513232130dbbd8f19dc (patch)
tree371807748eead8c8f31cd5cbe3af40fccb597f59 /morphlib/definitions_repo.py
parent9dfed63d574ad68e7a22c98ef9aac1f2a3bd172b (diff)
downloadmorph-26dce1d6ef83294c184fc513232130dbbd8f19dc.tar.gz
Determine whether to include_local_changes from app.settings
Previously callers to DefinitionsRepoWithApp.source_pool() could override the user's value, but that's not actually used anywhere. Change-Id: I43b53e7b9fc937886c8e6e95947e5e2b6776d085
Diffstat (limited to 'morphlib/definitions_repo.py')
-rw-r--r--morphlib/definitions_repo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/morphlib/definitions_repo.py b/morphlib/definitions_repo.py
index 07c2dbb6..24b88a7e 100644
--- a/morphlib/definitions_repo.py
+++ b/morphlib/definitions_repo.py
@@ -325,14 +325,14 @@ class DefinitionsRepoWithApp(DefinitionsRepo):
git_user_email=self._git_user_email,
status_cb=self.app.status,)
- def source_pool(self, ref, system_filename,
- include_local_changes=False):
+ def source_pool(self, ref, system_filename):
'''Equivalent to DefinitionsRepo.source_pool().'''
+ local_changes = self.app.settings['local-changes']
return DefinitionsRepo.source_pool(
self, self._lrc, self._rrc, self.app.settings['cachedir'],
ref, system_filename,
- include_local_changes=include_local_changes,
+ include_local_changes=(local_changes == 'include'),
push_local_changes=self.app.settings['push-build-branches'],
build_ref_prefix=self.app.settings['build-ref-prefix'],
git_user_name=self._git_user_name,