Skip to content

Commit dca1cd9

Browse files
committed
Bug fix
1 parent 839bab6 commit dca1cd9

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed
File renamed without changes.
-1.3 KB
Binary file not shown.
-143 Bytes
Binary file not shown.
-2.49 KB
Binary file not shown.

src/__pycache__/main.cpython-310.pyc

-11.7 KB
Binary file not shown.
-629 Bytes
Binary file not shown.

src/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import platform
1212
import psutil
1313
import shutil
14-
import editor
14+
import PYeditor
1515
import curses
1616
import sys
1717

@@ -516,7 +516,7 @@ def main():
516516
rmdir(directory)
517517
elif input_cmd.startswith("edit "):
518518
_, file_name = input_cmd.split()
519-
curses.wrapper(editor.main, file_name)
519+
curses.wrapper(PYeditor.main, file_name)
520520
elif remove_space(input_cmd) != "":
521521
if input_cmd.strip() != "":
522522
try:

0 commit comments

Comments
 (0)