Skip to content

Commit

Permalink
Merge pull request #24 from janrain/topic/DEL-1932/Fixed-application.…
Browse files Browse the repository at this point in the history
…py-file

[DEL-1932] moved application identifier outside of conditional
  • Loading branch information
akameron committed Apr 27, 2017
2 parents 61a96d0 + 429b64b commit 08e46c7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions application.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
from bluekai import get_config
from bluekai.models import JobModel

config = get_config()
application = create_app(config, JobModel)
logging_init(application)

if __name__ == '__main__':
config = get_config()
application = create_app(config, JobModel)
logging_init(application)
application.run()

0 comments on commit 08e46c7

Please sign in to comment.