diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1041,7 +1041,7 @@ class Project(object): | |||
1041 | verbose=False, | 1041 | verbose=False, |
1042 | output_redir=None, | 1042 | output_redir=None, |
1043 | is_new=None, | 1043 | is_new=None, |
1044 | current_branch_only=False, | 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=True, |
@@ -1116,7 +1116,7 @@ class Project(object): | |||
1116 | and self._ApplyCloneBundle(initial=is_new, quiet=quiet, verbose=verbose)): | 1116 | and self._ApplyCloneBundle(initial=is_new, quiet=quiet, verbose=verbose)): |
1117 | is_new = False | 1117 | is_new = False |
1118 | 1118 | ||
1119 | if not current_branch_only: | 1119 | if current_branch_only is None: |
1120 | if self.sync_c: | 1120 | if self.sync_c: |
1121 | current_branch_only = True | 1121 | current_branch_only = True |
1122 | elif not self.manifest._loaded: | 1122 | elif not self.manifest._loaded: |