Skip to content

Commit

Permalink
Merge pull request #100 from GTZ-STUDIO/develop
Browse files Browse the repository at this point in the history
Fix typo in deployment.py
  • Loading branch information
Verzaccii committed Mar 20, 2024
2 parents 359df98 + d6e2008 commit 9468893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lvlgg_backend/lvlgg_backend/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}

CONNECTION = os.environ['AZURE_POSTGRESQL_CONNECTIONSTRING']
CONNECTION_STR = {pair.split('=')[0]:pair.split('=')[1] for pair in CONNECTION.split('')}
CONNECTION_STR = {pair.split('=')[0]:pair.split('=')[1] for pair in CONNECTION.split(' ')}

DATABASES = {
"default": {
Expand Down

0 comments on commit 9468893

Please sign in to comment.