diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/gitsm.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/gitsm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/gitsm.py b/bitbake/lib/bb/fetch2/gitsm.py index a7110a988d..c5c23d5260 100644 --- a/bitbake/lib/bb/fetch2/gitsm.py +++ b/bitbake/lib/bb/fetch2/gitsm.py | |||
@@ -163,7 +163,7 @@ class GitSM(Git): | |||
163 | else: | 163 | else: |
164 | self.process_submodules(ud, ud.clonedir, need_update_submodule, d) | 164 | self.process_submodules(ud, ud.clonedir, need_update_submodule, d) |
165 | 165 | ||
166 | if len(need_update_list) > 0: | 166 | if need_update_list: |
167 | logger.debug('gitsm: Submodules requiring update: %s' % (' '.join(need_update_list))) | 167 | logger.debug('gitsm: Submodules requiring update: %s' % (' '.join(need_update_list))) |
168 | return True | 168 | return True |
169 | 169 | ||