Skip to content

Commit

Permalink
Convert to 'str' before printing with LogError()
Browse files Browse the repository at this point in the history
  • Loading branch information
takaakifuji committed Apr 30, 2024
1 parent 55cf9f9 commit e01df04
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified CJKAnchorPlacement.glyphsTool/Contents/CodeResources
Binary file not shown.
Binary file modified CJKAnchorPlacement.glyphsTool/Contents/MacOS/plugin
Binary file not shown.
2 changes: 1 addition & 1 deletion CJKAnchorPlacement.glyphsTool/Contents/Resources/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def mouseDoubleDown_(self, event):
try:
super(CJKAnchorPlacementTool, self).mouseDoubleDown_(event)
except AttributeError as e:
LogError(e) # Some encounter AttributeError while I cannot reproduce it.
LogError(repr(e)) # Some encounter AttributeError while I cannot reproduce it.

@LSBValue.setter
def LSBValue(self, value):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Resources/plugin.py</key>
<data>
6aebAw4SCkI1otsD6PlLg2/Qo5U=
h47wMCCvx7uHRTCuCv8+KoeHCjw=
</data>
<key>Resources/toolbar.ai</key>
<data>
Expand Down Expand Up @@ -53,11 +53,11 @@
<dict>
<key>hash</key>
<data>
6aebAw4SCkI1otsD6PlLg2/Qo5U=
h47wMCCvx7uHRTCuCv8+KoeHCjw=
</data>
<key>hash2</key>
<data>
eHbTN5WCeXrUsewUeJTCq541mRqS/XkcpaKGnWt1wrw=
SHYBTpPzKYMVmPbfjrTDtNxo8usimYPc62W6aAd75V0=
</data>
</dict>
<key>Resources/toolbar.ai</key>
Expand Down

0 comments on commit e01df04

Please sign in to comment.