This commit is contained in:
Sebastien Bourdeauducq 2016-02-25 01:22:43 +08:00
parent 251aed047f
commit c3cdce9d02
1 changed files with 1 additions and 1 deletions

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: