Fix flake8 warning
This commit is contained in:
parent
e61d82e025
commit
21692634f2
1 changed files with 2 additions and 1 deletions
3
gitdch
3
gitdch
|
@ -135,7 +135,8 @@ if not options.package_name:
|
||||||
# Initialize log
|
# Initialize log
|
||||||
log = logging.getLogger()
|
log = logging.getLogger()
|
||||||
logformat = logging.Formatter(
|
logformat = logging.Formatter(
|
||||||
f'%(asctime)s - {os.path.basename(sys.argv[0])} - %(levelname)s : %(message)s'
|
f'%(asctime)s - {os.path.basename(sys.argv[0])} - %(levelname)s '
|
||||||
|
': %(message)s'
|
||||||
)
|
)
|
||||||
# Set root logger to DEBUG (filtering done by handlers)
|
# Set root logger to DEBUG (filtering done by handlers)
|
||||||
log.setLevel(logging.DEBUG)
|
log.setLevel(logging.DEBUG)
|
||||||
|
|
Loading…
Reference in a new issue