Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

core/util: fix tiny utc covnersion error

+1 -1
+1 -1
core/util.py
··· 10 10 11 11 def format_datetime_utc(value: str) -> str: 12 12 """Format an ISO datetime string as UTC.""" 13 - dt = datetime.fromisoformat(value) 13 + dt = datetime.fromisoformat(value).astimezone(timezone.utc) 14 14 return dt.strftime("%Y-%m-%d %H:%M UTC") 15 15 16 16