mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
syntax fix
This commit is contained in:
parent
fbc100896b
commit
5e0999c063
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ LOG_LEVELS = {
|
|||
|
||||
# Make a list of log level names sorted by log level
|
||||
SORTED_LEVEL_NAMES = [
|
||||
l[0] for l in sorted(LOG_LEVELS.items()), key=lambda x: x[1])
|
||||
l[0] for l in sorted(LOG_LEVELS.items(), key=lambda x: x[1])
|
||||
]
|
||||
|
||||
# Store an instance of the current logging logger class
|
||||
|
|
Loading…
Add table
Reference in a new issue