Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
fix: cmd exit
Browse files Browse the repository at this point in the history
  • Loading branch information
ogios committed Jun 9, 2023
1 parent c8533c1 commit dd59f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/main_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def main():
command = text.strip()
if command[0] == "/":
command = command[1:].split(" ")
if command[0] == "exit" or "q":
if command[0] == "exit" or command[0] == "q":
os._exit(0)
elif command[0] == "new":
newConversation(openassistant)
Expand Down

0 comments on commit dd59f23

Please sign in to comment.