Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit fe61414

Browse files
committed
bug fix
1 parent 7c7fb57 commit fe61414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def iter_all_chats(self):
424424
data = pickle.loads(value)
425425
if not isinstance(data,dict):
426426
deathlist.append(key)
427-
self.log_bug(ValueError('chat data is not a dict'), 'chat data is not a dict', data = data, deleted = deleted)
427+
self.log_bug(ValueError('chat data is not a dict'), 'chat data is not a dict', data = data)
428428
continue
429429
yield key.decode(), data
430430
with env.begin(self.chats_db, write = True) as txn:

0 commit comments

Comments
 (0)