syntax fix

This commit is contained in:
Thomas S Hatch 2014-11-07 16:47:31 -07:00
parent fbc100896b
commit 5e0999c063

View file

@ -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