Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ script:
- "make test"
- "make lint"
- "make check-fmt"
- "gunicorn --check-config app.main:APP"
after_success:
- coveralls
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: gunicorn app.main:APP -k uvicorn.workers.UvicornWorker
web: gunicorn app.main:APP --log-file=- --log-level info -k uvicorn.workers.UvicornWorker
2 changes: 1 addition & 1 deletion app/utils/countries.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,6 @@ def country_code(value):
"""
code = COUNTRY_NAME__COUNTRY_CODE.get(value, DEFAULT_COUNTRY_CODE)
if code == DEFAULT_COUNTRY_CODE:
LOGGER.warning(f"No country code found for '{value}'. Using '{code}'!")
LOGGER.info(f"No country code found for '{value}'. Using '{code}'!")

return code