mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
projects.py: Fix exception in error message (missing -devel package)
Missing -devel packages during build often lead to this: WARNING: No project directory for module "dw-pi-playlist: No project path found for module "dw-pi-playlist" but actually, the warning isn't correctly logged. Instead, an exception is thrown. Fix that. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
350492f988
commit
f82988dcc0
1 changed files with 1 additions and 1 deletions
|
|
@ -858,7 +858,7 @@ class Projects(object):
|
|||
continue
|
||||
r.append(pd)
|
||||
except Exception as e:
|
||||
self.warn(f'No project directory for module "{module}: {e}')
|
||||
self.warn(f'No project directory for module "{m}: {e}')
|
||||
continue
|
||||
print(' '.join(r))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue