Skip to content

Commit

Permalink
Fix date format in Azure v1 reports (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
esebesto authored Nov 3, 2023
1 parent bb865c2 commit f6cd14e
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.4.4"
__version__ = "4.4.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 @@ -312,7 +312,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
row["UsageDateTime"] = start.strftime("%Y-%m-%d %H:%M:%S")
return row

def _add_tag_data(self, row):
Expand Down

0 comments on commit f6cd14e

Please sign in to comment.