Merge "Remove __unicode__() from RallyCliError"

This commit is contained in:
Zuul 2021-02-08 14:48:04 +00:00 committed by Gerrit Code Review
commit ec1f31a685
1 changed files with 0 additions and 3 deletions

View File

@ -39,9 +39,6 @@ class RallyCliError(Exception):
def __str__(self): def __str__(self):
return self.msg return self.msg
def __unicode__(self):
return self.msg
class JsonTempFile(object): class JsonTempFile(object):