Skip to content

Commit

Permalink
missing )
Browse files Browse the repository at this point in the history
  • Loading branch information
mencken-d committed Feb 9, 2025
1 parent 8432a0f commit f730493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox_ptov/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def emit(self, record):
def formatTime(self, record, datefmt=None):
# Ensure record.created is a float timestamp
timestamp = self.converter(record.created)
messages.info(request, f'timestamp: {str(timestamp}', extra_tags='safe')
messages.info(request, f'timestamp: {str(timestamp)}', extra_tags='safe')
dt_object = datetime.datetime.fromtimestamp(timestamp, tz=timezone.utc)
messages.info(request, f'dt_object: {str(dt_object)}', extra_tags='safe')
return dt_object.isoformat()
Expand Down

0 comments on commit f730493

Please sign in to comment.