Browse Source

Update config.py

pull/1213/head
Bryan Stitt 10 years ago committed by defuz
parent
commit
bbd9c2f100
  1. 2
      flask/config.py

2
flask/config.py

@ -247,6 +247,8 @@ class Config(dict):
continue
if trim_namespace:
key = k[len(namespace):]
else:
key = k
if lowercase:
key = key.lower()
rv[key] = v

Loading…
Cancel
Save