summaryrefslogtreecommitdiff
path: root/osprofiler/cmd/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'osprofiler/cmd/commands.py')
-rw-r--r--osprofiler/cmd/commands.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/osprofiler/cmd/commands.py b/osprofiler/cmd/commands.py
index c4750a5..ab80c9e 100644
--- a/osprofiler/cmd/commands.py
+++ b/osprofiler/cmd/commands.py
@@ -19,7 +19,6 @@ import os
from oslo_utils import encodeutils
from oslo_utils import uuidutils
import prettytable
-import six
from osprofiler.cmd import cliutils
from osprofiler.drivers import base
@@ -188,7 +187,4 @@ class TraceCommands(BaseCommand):
for trace in traces:
row = [trace[field] for field in fields]
pretty_table.add_row(row)
- if six.PY3:
- print(encodeutils.safe_encode(pretty_table.get_string()).decode())
- else:
- print(encodeutils.safe_encode(pretty_table.get_string()))
+ print(encodeutils.safe_encode(pretty_table.get_string()).decode())