Skip to content

Commit 2a60746

Browse files
committed
Fixed typos and None check.
1 parent 3bece33 commit 2a60746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

review-helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#MenuTitle: Review helper: reveal all notes and annotations
1+
#MenuTitle: Review helper: reveall all notes and annotations
22
# -*- coding: utf-8 -*-
33
__doc__="""
44
Review helper, see all annotations/notes in current font project, including selected ones
@@ -27,5 +27,5 @@
2727

2828
print "\nNotes per glyphs to review across the whole font project :"
2929
for glyph in font.glyphs:
30-
if not glyph.note == glyph.name:
30+
if not glyph.note == "None": or if not glyph.note == glyph.name:
3131
print glyph.name, ":", glyph.note

0 commit comments

Comments
 (0)