Skip to content

Commit

Permalink
Fix attr name
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum authored Mar 8, 2024
1 parent 3430efc commit b2ffbe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra_rcjk/backend_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ async def _newGlyph(self, glyphName: str, codePoints: list[int]) -> None:
logger.info(f"Creating new glyph '{glyphName}'")
dummyGlyph = GLIFGlyph()
dummyGlyph.name = glyphName
dummyGlyph.codePoints = codePoints
dummyGlyph.unicodes = codePoints
dummyGlyph.width = 314 # arbitrary positive value
xmlData = dummyGlyph.asGLIFData()
response = await self.client.character_glyph_create(
Expand Down

0 comments on commit b2ffbe7

Please sign in to comment.