Skip to content

Commit

Permalink
fix: update Python command to use python3 in handleSchedule function
Browse files Browse the repository at this point in the history
  • Loading branch information
nestorzamili committed Dec 18, 2024
1 parent 66c47cc commit ec0ee69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ async function handleAIResponse(message, body, from) {
}

async function handleSchedule(message, from) {
exec("python getSchedule.py", (error, stdout) => {
exec("python3 getSchedule.py", (error, stdout) => {
if (error) {
log(`Error getting schedule: ${error}`);
return;
Expand Down

0 comments on commit ec0ee69

Please sign in to comment.