Skip to content

Commit

Permalink
Merge pull request #197 from pyhoneybot/fix-pr-196
Browse files Browse the repository at this point in the history
fix pr 196
  • Loading branch information
Abdur-rahmaanJ authored Jun 28, 2023
2 parents 01785fc + cbd333b commit bd48d8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/honeybot/api/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ def specific_send(target, msg):

def pong_return(domain):
return f"PONG :{domain}\r\n"

def quit():
return f"QUIT Leaving / \r\n"
4 changes: 2 additions & 2 deletions src/honeybot/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
try:
from honeybot.api.generate import gen_pluginsinfo
from honeybot.api.init import init
from honeybot.api.main import Bot_core
from honeybot.api.main import BotCore
from honeybot.api.print import print_connect_settings, print_honeybot_manifesto
except Exception as e:
print(e)
Expand Down Expand Up @@ -38,7 +38,7 @@ def main():

print_connect_settings(info)
try:
x = Bot_core(info)
x = BotCore(info)
x.unregistered_run()
except KeyboardInterrupt:
print("interrupted")
Expand Down

0 comments on commit bd48d8c

Please sign in to comment.