From 934b2a596ee0ff763b59645c99a9ef0843d1134b Mon Sep 17 00:00:00 2001 From: Yandong Xuan Date: Fri, 8 Jan 2021 11:08:23 +0800 Subject: [PATCH] Remove __unicode__() from RallyCliError This is no longer needed in Python 3. Change-Id: I2e2d6b6f43b958193557aa6bb8d5e3fe06ef73c7 --- tests/functional/utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/functional/utils.py b/tests/functional/utils.py index 993b3a22..9a05c27a 100644 --- a/tests/functional/utils.py +++ b/tests/functional/utils.py @@ -39,9 +39,6 @@ class RallyCliError(Exception): def __str__(self): return self.msg - def __unicode__(self): - return self.msg - class JsonTempFile(object):