Skip to content

Commit

Permalink
Fix a bug in database settings
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed May 19, 2015
1 parent f89fd9c commit 82bd843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pretix/settings.py
Expand Up @@ -30,7 +30,7 @@
'ENGINE': 'django.db.backends.' + config.get('database', 'backend', fallback='sqlite3'),
'NAME': config.get('database', 'name', fallback=os.path.join(BASE_DIR, 'db.sqlite3')),
'USER': config.get('database', 'user', fallback=''),
'PASSWORD': config.get('database', 'user', fallback=''),
'PASSWORD': config.get('database', 'password', fallback=''),
'HOST': config.get('database', 'host', fallback=''),
'PORT': config.get('database', 'port', fallback='')
}
Expand Down

0 comments on commit 82bd843

Please sign in to comment.