<div dir="ltr">Hi!  I've tried to follow the suggestions <a href="http://flask.pocoo.org/docs/0.11/config/#development-production">here</a> for maintaining separate configs for my dev/qa/prod environments but am bumping into problems . . .<div><br></div><div>My config can be found <a href="http://pastebin.com/6gDdT0YT">here</a></div><div><br></div><div>I "call" the config like so:</div><div><div>app = Flask(__name__)</div><div>env = os.environ['FLOWBOT_ENV']</div><div>print("ENV : %s" % env)</div><div>app.config.from_object('config.%sConfig' % env.title())</div></div><div><br></div><div>so when env is set to "dev" it should pick up the DevConfig config . . .  but it seems to want to pick up ALL of the classes in the config and I can't see why!</div><div><br></div><div>when after running the "from_object" above I get output that says </div><div>Loading from config/qa/projects.yml<br></div><div>then</div><div>Loading from config/production/projects.yml<br></div><div>etc . . .</div><div><br></div><div>Any ideas what I'm doing wrong here?</div><div><br></div><div>thanks so much,</div><div>Guy</div></div>