Fix AttributeError exception in log.py with python3.4

This commit is contained in:
Sergio Conde 2014-04-01 20:16:20 +02:00
parent 0f3a159a60
commit ad3deb7c21
1 changed files with 4 additions and 1 deletions

View File

@ -209,7 +209,10 @@ class ValidLogLevel(registry.String):
def set(self, s):
s = s.upper()
try:
level = logging._levelNames[s]
try:
level = logging._levelNames[s]
except AttributeError:
level = logging._nameToLevel[s]
except KeyError:
try:
level = int(s)