Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit de5a2ce

Browse files
authored
update
1 parent 8b31ac8 commit de5a2ce

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

kernel/kernel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,8 @@ def welcome():
227227
print(treevalue)
228228

229229
elif command == "app":
230-
script_path = os.path.join(apps_dir, input("Enter the app name (with a .py): ").strip())
230+
script_path = os.path.join(apps_dir, input("Enter the app name: ").strip())
231+
script_path = script_path + ".py" # PYTHON
231232
if os.path.isfile(script_path):
232233
try:
233234
subprocess.run([sys.executable, script_path], check=True)

0 commit comments

Comments
 (0)