Skip to content

Commit

Permalink
annual-reports: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
drjova committed Oct 27, 2023
1 parent 22df5b7 commit 33639c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion annual-reports/src/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def __init__(
self.db_user = db_user or os.environ.get("DB_USER")
self.db_password = db_password or os.environ.get("DB_PASSWORD")
self.db_host = db_host or os.environ.get("DB_HOST")
self.db_name = db_name or os.environ.get("DB_NAME")
self.db_name = db_name or os.environ.get("MATOMO_DB_NAME")
self.db_port = db_port or os.environ.get("DB_PORT")
if not all(
[
Expand Down

0 comments on commit 33639c8

Please sign in to comment.