diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-04-20 22:01:58 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-04-20 22:01:58 -0400 |
| commit | b307b8e8247678a4bf128ded80a9bfd7b9b54c81 (patch) | |
| tree | 65245a2e3365185ef5d5afea631b3eb9b67ef3fd | |
| parent | b2d11ce956d14b08addb7d938e59aaa1aa8f42d4 (diff) | |
fix style
| -rw-r--r-- | lib/extensions/lettering.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/extensions/lettering.py b/lib/extensions/lettering.py index 17435492..a2a729b5 100644 --- a/lib/extensions/lettering.py +++ b/lib/extensions/lettering.py @@ -146,8 +146,9 @@ class LetteringFrame(wx.Frame): def set_initial_font(self, font_id): if font_id: if font_id not in self.fonts_by_id: - info_dialog(self, _( - '''This text was created using the font "%s", but Ink/Stitch can't find that font. A default font will be substituted.''') % font_id) + message = '''This text was created using the font "%s", but Ink/Stitch can't find that font. ''' \ + '''A default font will be substituted.''' + info_dialog(self, _(message) % font_id) try: self.font_chooser.SetValueByUser(self.fonts_by_id[font_id].name) |
