randydev commited on
Commit
09c6645
·
verified ·
1 Parent(s): eb0c309

Update chatbot/plugins/chat.py

Browse files
Files changed (1) hide show
  1. chatbot/plugins/chat.py +1 -1
chatbot/plugins/chat.py CHANGED
@@ -752,7 +752,7 @@ async def terjemahkan(client, callback):
752
  return await callback.answer("translate history not found")
753
 
754
  for translations in data_tr["translate_history"]:
755
- LOGS.info(f"Update translation: {translations}")
756
  if translations.get("uuid") == uuidstr:
757
  translate_result += translations.get("text", "no translation")
758
  break
 
752
  return await callback.answer("translate history not found")
753
 
754
  for translations in data_tr["translate_history"]:
755
+ LOGS.info(f"Update translation: {translations["uuid"]}")
756
  if translations.get("uuid") == uuidstr:
757
  translate_result += translations.get("text", "no translation")
758
  break