2007-10-12 Don Allingham <don@gramps-project.org>

* src/gen/lib/note.py (Note.get): fix typo



svn: r9161
This commit is contained in:
Don Allingham 2007-10-12 11:48:28 +00:00
parent 5495c3f705
commit 4c2e57cb2e
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2007-10-12 Don Allingham <don@gramps-project.org>
* src/gen/lib/note.py (Note.get): fix typo
2007-10-12 Benny Malengier <benny.malengier@gramps-project.org>
* src/Filters/Rules/Event/_MatchesSourceFilter.py: new filter
* src/Filters/Rules/Event/__init__.py: load new filter

View File

@ -120,7 +120,7 @@ class Note(BasicPrimaryObject):
"""
text = self.text
if not markup and text.starts_with(ROOT_START_TAG):
if not markup and text.startswith(ROOT_START_TAG):
text = self.delete_tags(text)
return text