Skip to content

Commit

Permalink
fix: don't join command
Browse files Browse the repository at this point in the history
  • Loading branch information
GetPsyched committed Jan 20, 2024
1 parent 6a4daa2 commit 5cbb69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charachorder/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def charachorder_shell(device: CharaChorder) -> None:
command = input("> ").split(" ")

try:
result = device._execute(" ".join(command))
result = device._execute(*command)
print(" ".join(result))
except UnknownCommand:
print("Unknown command. For a list of available commands, run `CMD`")
Expand Down

0 comments on commit 5cbb69a

Please sign in to comment.