summaryrefslogtreecommitdiff
path: root/misc/kernsample.py
diff options
context:
space:
mode:
Diffstat (limited to 'misc/kernsample.py')
-rwxr-xr-xmisc/kernsample.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/kernsample.py b/misc/kernsample.py
index cc36fbe17..d67ba719d 100755
--- a/misc/kernsample.py
+++ b/misc/kernsample.py
@@ -62,7 +62,7 @@ def samplesForGlyphname(font, groups, groupmap, kerning, glyphname, args):
left = fmtGlyphname(glyphname, leftGlyph)
suffix_uc = ''
suffix_lc = ''
- if len(args.suffix) > 0:
+ if args.suffix and len(args.suffix) > 0:
s = unicode(args.suffix)
if s[0].isupper():
suffix_uc = args.suffix
@@ -112,7 +112,6 @@ def main():
'You can also provide a Unicode code point using the syntax "U+XXXX"')
args = argparser.parse_args()
- dryRun = args.dryRun
font = OpenFont(args.fontPath)