witten
/
luminotes
Archived
1
0
Fork 0

Minor fix.

This commit is contained in:
Dan Helfman 2007-09-04 21:40:21 +00:00
parent 197d65877f
commit a7ca76f611
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Deleter( object ):
startup_notes = []
for note in main_notebook.notes:
if note.title == "contact us": # FIXME: make the note title to delete not hard-coded
if note and note.title == "contact us": # FIXME: make the note title to delete not hard-coded
print "deleting note %s: %s" % ( note.object_id, note.title )
main_notebook.remove_note( note )