소스 검색

rename file from EchoBot to JabberBot

blezz-tech 1 개월 전
부모
커밋
71fcccaeb2
4개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      handlers/handlers/open_access_request_pending.py
  2. 1 1
      handlers/handlers/open_basic_bot.py
  3. 1 1
      handlers/main.py
  4. 0 0
      handlers/utils/JabberBot.py

+ 1 - 1
handlers/handlers/open_access_request_pending.py

@@ -2,7 +2,7 @@ import hashlib
 from datetime import datetime
 import config
 import logging
-from utils.EchoBot import JabberBot
+from utils.JabberBot import JabberBot
 from slixmpp.stanza import Message
 import jsonAndRequest as jsreq
 from time import sleep

+ 1 - 1
handlers/handlers/open_basic_bot.py

@@ -2,7 +2,7 @@ import hashlib
 from datetime import datetime
 import config
 import logging
-from utils.EchoBot import JabberBot
+from utils.JabberBot import JabberBot
 from slixmpp.stanza import Message
 
 botname = "open_basic_bot"

+ 1 - 1
handlers/main.py

@@ -1,5 +1,5 @@
 import config
-from utils.EchoBot import JabberBot
+from utils.JabberBot import JabberBot
 import logging
 from argparse import ArgumentParser
 import importlib

+ 0 - 0
handlers/utils/EchoBot.py → handlers/utils/JabberBot.py