Fix yet another typo

This commit is contained in:
Mads Marquart
2020-01-24 21:13:14 +01:00
parent 2cb43ff0b0
commit eaacaaba8d

View File

@@ -59,7 +59,7 @@ def parse_json(text: str) -> Any:
def generate_offline_threading_id():
ret = _util.datetime_to_millis(datetime.datetime.utcnow())
ret = datetime_to_millis(datetime.datetime.utcnow())
value = int(random.random() * 4294967295)
string = ("0000000000000000000000" + format(value, "b"))[-22:]
msgs = format(ret, "b") + string