diff options
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r-- | subcmds/sync.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index e5280865..31760e5c 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -169,10 +169,11 @@ later is required to fix a server side protocol bug. | |||
169 | PARALLEL_JOBS = 1 | 169 | PARALLEL_JOBS = 1 |
170 | 170 | ||
171 | def _CommonOptions(self, p): | 171 | def _CommonOptions(self, p): |
172 | try: | 172 | if self.manifest: |
173 | self.PARALLEL_JOBS = self.manifest.default.sync_j | 173 | try: |
174 | except ManifestParseError: | 174 | self.PARALLEL_JOBS = self.manifest.default.sync_j |
175 | pass | 175 | except ManifestParseError: |
176 | pass | ||
176 | super()._CommonOptions(p) | 177 | super()._CommonOptions(p) |
177 | 178 | ||
178 | def _Options(self, p, show_smart=True): | 179 | def _Options(self, p, show_smart=True): |