witten
/
luminotes
Archived
1
0
Fork 0

Only hide recent notes if recent_notes is None.

This commit is contained in:
Dan Helfman 2008-04-16 00:32:09 +00:00
parent 431bf6ace7
commit 8993f69c0c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Note_tree_area( Div ):
) or None,
tree_id = "note_tree_root_table",
),
( recent_notes and notebook.name != u"trash" ) and Span(
( recent_notes is not None and notebook.name != u"trash" ) and Span(
H4( u"recent notes",
id = u"recent_notes_area_title",
),