Skip to content

Commit

Permalink
[voltLib] Accept False for LookupDefinition.reversal
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Jun 8, 2020
1 parent babca16 commit 80dac9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/fontTools/voltLib/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def __str__(self):
res += ' SKIP_MARKS'
if self.direction is not None:
res += f' DIRECTION {self.direction}'
if self.reversal is not None:
if self.reversal:
res += ' REVERSAL'
if self.comments is not None:
comments = self.comments.replace('\n', r'\n')
Expand Down

0 comments on commit 80dac9c

Please sign in to comment.