From 170405fbf739caa9e1a75186cd6d7f19cb3f5431 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 1 Apr 2015 13:27:57 -0400 Subject: [PATCH] Use icon instead of unicode character for index node "next level" indicator --- mayan/apps/document_indexing/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/document_indexing/widgets.py b/mayan/apps/document_indexing/widgets.py index d1723c55ee..aed6df86e6 100644 --- a/mayan/apps/document_indexing/widgets.py +++ b/mayan/apps/document_indexing/widgets.py @@ -81,7 +81,7 @@ def node_level(x): ''.join( [ '     ' * (getattr(x, x._mptt_meta.level_attr) - 1), - '' if x.is_root_node() else '', + '' if x.is_root_node() else ' ', ugettext('Root') if x.is_root_node() else unicode(x) ] )