editor rename, print message when running editor.py
parent
10c9b0a629
commit
bb7586bd88
|
@ -2,7 +2,7 @@ import argparse
|
|||
import os
|
||||
import signal
|
||||
from interactive_menu import *
|
||||
from dettect_editor import DeTTECTEditor
|
||||
from editor import DeTTECTEditor
|
||||
|
||||
|
||||
def _init_menu():
|
||||
|
|
|
@ -65,3 +65,7 @@ class DeTTECTEditor:
|
|||
"""
|
||||
thread = threading.Thread(target=self._run_webserver)
|
||||
thread.start()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
print("Please use dettect.py for running the DeTT&CT Editor. Run 'python dettect.py e -h' for more information.")
|
Loading…
Reference in New Issue