Fix typo in word "initialization"

Closes-Bug: #1549679

Change-Id: I9c2d8786755246bc09944df553f61c9cc9b0d8a7
This commit is contained in:
Dmitry Ratushnyy 2016-02-25 11:50:48 +03:00 committed by Dave McCowan
parent bf4273b2f2
commit fad48239e1
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ def main_app(func):
config.setup_remote_pydev_debug()
# Initializing the database engine and session factory before the app
# starts ensures we don't lose requests due to lazy initialiation of db
# connections.
# starts ensures we don't lose requests due to lazy initialization of
# db connections.
repositories.setup_database_engine_and_factory()
wsgi_app = func(global_config, **local_conf)