added first ACS ASS command

This commit is contained in:
2022-03-07 11:07:54 +01:00
parent 859cbf0eb3
commit 0bdc8f04a8
7 changed files with 38 additions and 12 deletions

View File

@ -27,6 +27,7 @@ limitations under the License.
@author R. Mueller
"""
import sys
import traceback
try:
from tmtccmd.runner import (
@ -39,12 +40,9 @@ try:
except ImportError as error:
run_tmtc_commander = None
initialize_tmtc_commander = None
print(error)
tb = traceback.format_exc()
print(tb)
print("Python tmtccmd submodule could not be imported")
print(
'Install with "cd tmtccmd && python3 -m pip '
'install -e .[gui]" for interactive installation'
)
sys.exit(1)
try: