[r21696]TreeBaseModel: Avoid TypeError when bisecting

svn: r21700
This commit is contained in:
John Ralls 2013-03-19 18:34:44 +00:00
parent 764f17b935
commit 393323a670

View File

@ -34,7 +34,6 @@ This module provides the model that is used for all hierarchical treeviews.
# Standard python modules
#
#-------------------------------------------------------------------------
import time
import locale
import sys
@ -94,6 +93,8 @@ class Node(object):
self.name = sortkey
#sortkey must be localized sort, so
self.sortkey = glocale.sort_key(sortkey)
if not self.sortkey:
self.sortkey = ''
else:
self.name = ''
self.sortkey = ''