diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-04-20 14:03:35 +0200 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-04-20 14:05:05 +0200 |
commit | 96c480ea5447dc7172ad56ca895dbed54070b8b0 (patch) | |
tree | 7a9d706b35fb508bc22dea38f57f3e21a1750efe /controller/fw/tools | |
parent | f3c84f562ae3aa63e30ee6368f6f23dd243b092b (diff) | |
download | master-thesis-96c480ea5447dc7172ad56ca895dbed54070b8b0.tar.gz master-thesis-96c480ea5447dc7172ad56ca895dbed54070b8b0.tar.bz2 master-thesis-96c480ea5447dc7172ad56ca895dbed54070b8b0.zip |
fw sim: Update for uni servers
Diffstat (limited to 'controller/fw/tools')
-rw-r--r-- | controller/fw/tools/dsss_demod_test_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/fw/tools/dsss_demod_test_runner.py b/controller/fw/tools/dsss_demod_test_runner.py index c0f737d..51fc09b 100644 --- a/controller/fw/tools/dsss_demod_test_runner.py +++ b/controller/fw/tools/dsss_demod_test_runner.py @@ -101,7 +101,7 @@ def run_test(seed, amplitude_spec, background, nbits, decimation, symbols, thfs, proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, text=True) stdout, _stderr = proc.communicate() if proc.returncode != 0: - raise SystemError(f'Subprocess signalled error: {proc.returncode=}') + raise SystemError(f'Subprocess signalled error: {proc.returncode}') lines = stdout.splitlines() matched = [ l.partition('[')[2].partition(']')[0] |