summaryrefslogtreecommitdiffstats
path: root/git_superproject.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_superproject.py')
-rw-r--r--git_superproject.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git_superproject.py b/git_superproject.py
index 5d00bd72..8b6bbcf9 100644
--- a/git_superproject.py
+++ b/git_superproject.py
@@ -295,7 +295,8 @@ class Superproject(object):
295 if not os.path.exists(self._superproject_path): 295 if not os.path.exists(self._superproject_path):
296 self._LogWarning(f'missing superproject directory: {self._superproject_path}') 296 self._LogWarning(f'missing superproject directory: {self._superproject_path}')
297 return None 297 return None
298 manifest_str = self._manifest.ToXml(groups=self._manifest.GetGroupsStr()).toxml() 298 manifest_str = self._manifest.ToXml(groups=self._manifest.GetGroupsStr(),
299 omit_local=True).toxml()
299 manifest_path = self._manifest_path 300 manifest_path = self._manifest_path
300 try: 301 try:
301 with open(manifest_path, 'w', encoding='utf-8') as fp: 302 with open(manifest_path, 'w', encoding='utf-8') as fp: