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) ] )