Remove __unicode__() from RallyCliError

This is no longer needed in Python 3.

Change-Id: Id73db00ae3d35b80af8837278bbd415849381c3f
This commit is contained in:
Yandong Xuan
2021-01-08 10:55:08 +08:00
committed by Andrey Kurilin
parent 68d035d0a5
commit 412680357a

View File

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