summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/project.py b/project.py
index ab28f2c3..99419f61 100644
--- a/project.py
+++ b/project.py
@@ -1044,7 +1044,7 @@ class Project(object):
1044 current_branch_only=None, 1044 current_branch_only=None,
1045 force_sync=False, 1045 force_sync=False,
1046 clone_bundle=True, 1046 clone_bundle=True,
1047 tags=True, 1047 tags=None,
1048 archive=False, 1048 archive=False,
1049 optimized_fetch=False, 1049 optimized_fetch=False,
1050 retry_fetches=0, 1050 retry_fetches=0,
@@ -1125,8 +1125,8 @@ class Project(object):
1125 elif self.manifest.default.sync_c: 1125 elif self.manifest.default.sync_c:
1126 current_branch_only = True 1126 current_branch_only = True
1127 1127
1128 if not self.sync_tags: 1128 if tags is None:
1129 tags = False 1129 tags = self.sync_tags
1130 1130
1131 if self.clone_depth: 1131 if self.clone_depth:
1132 depth = self.clone_depth 1132 depth = self.clone_depth