Skip to content

Commit

Permalink
Fix typo in deployment.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Verzaccii committed Mar 20, 2024
1 parent 724a6ed commit add78d1
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 add78d1

Please sign in to comment.