Fix export name

This commit is contained in:
Nick Mowen 2023-10-07 08:17:58 -06:00
parent 14d2b79c72
commit fb99a6baa6

View File

@ -50,7 +50,7 @@ class RecordingExporter(threading.Thread):
def get_datetime_from_timestamp(self, timestamp: int) -> str:
"""Convenience fun to get a simple date time from timestamp."""
return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H:%M")
return datetime.datetime.fromtimestamp(timestamp).strftime("%Y_%m_%d_%H_%M")
def run(self) -> None:
logger.debug(