mirror of
ssh://devgit.janware.com/janware/proj/jw-devtest
synced 2026-06-17 22:26:38 +02:00
First line lacks a shebang, add it.
Signed-off-by: Jan Lindemann <jan@janware.com>
9 lines
204 B
Python
9 lines
204 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import jwutils
|
|
from devtest.os import * # import all commands
|
|
|
|
jwutils.log.set_filename_length(30)
|
|
|
|
exit(jwutils.run_sub_commands('Control Device under Test'))
|