editor rename, print message when running editor.py

master
Ruben Bouman 2020-03-10 08:48:03 +01:00
parent 10c9b0a629
commit bb7586bd88
2 changed files with 5 additions and 1 deletions

View File

@ -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():

View File

@ -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.")