Skip to content

Commit

Permalink
Catch another exception
Browse files Browse the repository at this point in the history
  • Loading branch information
jenskutilek committed May 2, 2024
1 parent 639d905 commit 1f8d021
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions MasterGrid.glyphsReporter/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
<key>CFBundleName</key>
<string>MasterGrid</string>
<key>CFBundleVersion</key>
<string>13</string>
<string>14</string>
<key>CFBundleShortVersionString</key>
<string>0.3.5</string>
<string>0.3.6</string>
<key>UpdateFeedURL</key>
<string>https://raw.githubusercontent.com/jenskutilek/MasterGrid/master/MasterGrid.glyphsReporter/Contents/Info.plist</string>
<key>productPageURL</key>
<string>https://github.com/jenskutilek/MasterGrid/</string>
<key>productReleaseNotes</key>
<string>Python 3/Glyphs 3 compatibility.</string>
<string>Bugfixes</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright, Jens Kutilek, 2017</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion MasterGrid.glyphsReporter/Contents/Resources/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def background(self, layer):

try:
master = layer.parent.parent.masters[layer.layerId]
except KeyError:
except (KeyError, TypeError):
return
if master is None:
return
Expand Down

0 comments on commit 1f8d021

Please sign in to comment.