Skip to content

Commit

Permalink
Fix azure v1 date. (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
myersCody committed Jun 13, 2024
1 parent 392662c commit 28b07ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.5.4"
__version__ = "4.5.5"

VERSION = __version__.split(".")
2 changes: 1 addition & 1 deletion nise/generators/azure/azure_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def _add_common_usage_info(self, row, start, end, **kwargs):
row["BillingPeriodEndDate"] = self.last_day_of_month(start).strftime(DATE_FMT)
else:
row["SubscriptionGuid"] = self.subscription_guid
row["UsageDateTime"] = start.strftime("%Y-%m-%d %H:%M:%S")
row["UsageDateTime"] = start.strftime(DATE_FMT)
return row

def _add_tag_data(self, row):
Expand Down

0 comments on commit 28b07ea

Please sign in to comment.