Skip to content

Commit

Permalink
Merge pull request #231 from mozilla-it/hf-colnames
Browse files Browse the repository at this point in the history
Pushing HF for column names
  • Loading branch information
bsieber-mozilla authored May 21, 2021
2 parents f76181b + e9391f6 commit 1d2375d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ctms/acoustic_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ def _newsletter_converter(self, acoustic_main_table, contact):
if newsletter.name in AcousticResources.MAIN_TABLE_SUBSCR_FLAGS.keys():
newsletter_dict = newsletter.dict()
_today = datetime.date.today().isoformat()
newsletter_template["create_date"] = self.dictionary_helper(
newsletter_template["create_timestamp"] = self.dictionary_helper(
newsletter_dict, "create_timestamp", _today
)
newsletter_template["update_date"] = self.dictionary_helper(
newsletter_template["update_timestamp"] = self.dictionary_helper(
newsletter_dict, "update_timestamp", _today
)
newsletter_template["newsletter_name"] = newsletter.name
Expand Down
2 changes: 1 addition & 1 deletion ctms/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
app = FastAPI(
title="ConTact Management System (CTMS)",
description="CTMS API (work in progress)",
version="0.8.2",
version="0.8.3",
)
SessionLocal = None
METRICS_REGISTRY = CollectorRegistry()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "ctms"
version = "0.8.2"
version = "0.8.3"
description = "Contact Management System API"
authors = [
"Brian Stack <[email protected]>",
Expand Down

0 comments on commit 1d2375d

Please sign in to comment.