diff --git a/utils/g5505_utils.py b/utils/g5505_utils.py index dafe78e..09000b7 100644 --- a/utils/g5505_utils.py +++ b/utils/g5505_utils.py @@ -106,7 +106,7 @@ def created_at(): now_tz_aware = now.astimezone() tz = now_tz_aware.strftime('%z') # Replace colons in the time part of the timestamp with hyphens to make it file name friendly - created_at = now_tz_aware.strftime('%Y-%m-%d_%H-%M-%S') + '_UTC-OFST_' + tz + created_at = now_tz_aware.strftime('%Y-%m-%d %H:%M:%S') #+ '_UTC-OFST_' + tz return created_at def convert_dataframe_to_np_structured_array(df: pd.DataFrame):