2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 03:08:27 +08:00
This commit is contained in:
Sebastien Bourdeauducq 2016-02-25 01:22:43 +08:00
parent 251aed047f
commit c3cdce9d02

View File

@ -132,7 +132,7 @@ def run(with_file=False):
except CompileError as error:
return
except Exception as exn:
if hasattr(exn, 'artiq_core_exception'):
if hasattr(exn, "artiq_core_exception"):
print(exn.artiq_core_exception, file=sys.stderr)
raise exn
finally: