diff --git a/awxkit/awxkit/exceptions.py b/awxkit/awxkit/exceptions.py index d8d132cef2..c1ff01719a 100644 --- a/awxkit/awxkit/exceptions.py +++ b/awxkit/awxkit/exceptions.py @@ -15,7 +15,7 @@ class Common(Exception): return self.__str__() def __str__(self): - return str(self.msg) + return '{} - {}'.format(self.status_string, self.msg) class BadRequest(Common):