aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/errors.py')
-rw-r--r--ethosu/vela/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/errors.py b/ethosu/vela/errors.py
index 918ca0a1..9553c80d 100644
--- a/ethosu/vela/errors.py
+++ b/ethosu/vela/errors.py
@@ -21,7 +21,7 @@ class VelaError(Exception):
"""Base class for vela exceptions"""
def __init__(self, data):
- self.data = f"Error! {data}"
+ self.data = f"Error: {data}"
self.error_msg = data
def __str__(self):