From ee511758ce92a3917f59f82279bfaacd674b5cc7 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 26 Jan 2022 07:51:35 +0800 Subject: [PATCH] fix typo --- artiq/coredevice/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/coredevice/exceptions.py b/artiq/coredevice/exceptions.py index 9600bdd29..7b6967743 100644 --- a/artiq/coredevice/exceptions.py +++ b/artiq/coredevice/exceptions.py @@ -103,7 +103,7 @@ class CoreException: 'another exception occurred:\n\n').join(tracebacks) return 'Core Device Traceback:\n' +\ traceback_str +\ - '\n\nEnd of Code Device Traceback\n' + '\n\nEnd of Core Device Traceback\n' class InternalError(Exception):