mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 09:53:32 +01:00
Add HDRDIR_SCOPE_SUFFIX to ytools include files
Change ytools header location from #include <header.h> to #include <ytools/header.h>. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
d7a5c931b8
commit
2b23026bfa
1 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@ import re
|
||||||
import importlib
|
import importlib
|
||||||
|
|
||||||
import Object
|
import Object
|
||||||
import log
|
import jwutils.log
|
||||||
|
|
||||||
class Cmd(Object.Object): # export
|
class Cmd(Object.Object): # export
|
||||||
|
|
||||||
|
|
@ -50,7 +50,7 @@ def run_sub_commands(description = '', filter = '^Cmd.*', modules=None): # expor
|
||||||
continue
|
continue
|
||||||
c().add_parser(subparsers)
|
c().add_parser(subparsers)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
log.set_level(args.log_level)
|
jwutils.log.set_level(args.log_level)
|
||||||
log.set_flags(args.log_flags)
|
jwutils.log.set_flags(args.log_flags)
|
||||||
|
|
||||||
args.func(args)
|
args.func(args)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue