mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-25 09:35:54 +02:00
jw.pkg.cmds.projects.CmdProjectDir: Fix warning typo
Trying to find the directory of a project should log a warning. It throws an exception instead. Fix that. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
53ba9e6fbe
commit
a55dd8175c
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ class CmdProjDir(Cmd): # export
|
|||
for m in args.module:
|
||||
path = self.app.find_dir(m)
|
||||
if path is None:
|
||||
log(WARNING, f'No project directory for module "{m}: {e}')
|
||||
log(WARNING, f'No project directory for module "{m}"')
|
||||
continue
|
||||
out.append(path)
|
||||
if out:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue