Refinements on previous commit; new filter by name 'media by size'

svn: r10190
This commit is contained in:
Doug Blank
2008-03-05 04:34:28 +00:00
parent e63589a044
commit 671891b816
3 changed files with 25 additions and 7 deletions

View File

@@ -174,7 +174,7 @@ class SimpleTable:
# FIXME: add better text representations of these objects
if type(item) in [str, unicode]:
retval.append(item)
elif type(item) in [int, float]:
elif type(item) in [int, float, long]:
retval.append(item)
self.row_sort_val(col, item)
elif isinstance(item, gen.lib.Person):