mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2024-12-11 16:39:53 +01:00
1efa191771
* Rename query modules. * storage: save_publication_report: Create publications. * Remove placeholder PublicationStatus.UNSAVED * Minor fixes.
11 lines
178 B
Python
11 lines
178 B
Python
from datetime import datetime, timezone, timedelta
|
|
|
|
today = datetime(
|
|
year=2021,
|
|
month=6,
|
|
day=6,
|
|
hour=5,
|
|
minute=0,
|
|
tzinfo=timezone(timedelta(hours=2)),
|
|
)
|