summaryrefslogtreecommitdiff
path: root/osprofiler/hacking/checks.py
diff options
context:
space:
mode:
Diffstat (limited to 'osprofiler/hacking/checks.py')
-rw-r--r--osprofiler/hacking/checks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/osprofiler/hacking/checks.py b/osprofiler/hacking/checks.py
index 2723210..3ac17b5 100644
--- a/osprofiler/hacking/checks.py
+++ b/osprofiler/hacking/checks.py
@@ -364,7 +364,7 @@ def check_using_unicode(logical_line, filename):
if re.search(r"\bunicode\(", logical_line):
yield (0, "N353 'unicode' function is absent in python3. Please "
- "use 'six.text_type' instead.")
+ "use 'str' instead.")
@core.flake8ext