mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
|
||
|
from datetime import datetime, timezone
|
||
|
|
||
|
timestamp = os.environ.get('SOURCE_DATE_EPOCH', None)
|
||
|
timeformat = '%c %Z'
|
||
|
|
||
|
if timestamp:
|
||
|
print(datetime.fromtimestamp(int(timestamp), tz=timezone.utc).strftime(timeformat))
|
||
|
else:
|
||
|
print(datetime.now(tz=timezone.utc).strftime(timeformat))
|