diff --git a/src/Utils.py b/src/Utils.py
index e72369d35..82deefbdf 100644
--- a/src/Utils.py
+++ b/src/Utils.py
@@ -1354,7 +1354,7 @@ def navigation_label(db, nav_type, handle):
label = " ".join(label.split())
# When strings are cut, make sure they are unicode
#otherwise you may end of with cutting within an utf-8 sequence
- label = get_unicode_path(label)
+ label = unicode(label)
if len(label) > 40:
label = label[:40] + "..."