Skip to content

Commit

Permalink
Fixed exception reporting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingDiver committed Feb 3, 2023
1 parent dc4e91f commit 27ffd0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MQTT Connector.indigoPlugin/Contents/Info.plist
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>PluginVersion</key>
<string>2022.1.0</string>
<string>2022.1.1</string>
<key>ServerApiVersion</key>
<string>3.0</string>
<key>IwsApiVersion</key>
Expand Down
Expand Up @@ -840,7 +840,7 @@ def getProtocolList(self, ifilter="", valuesDict=None, typeId="", targetId=0):
with open(path, 'rb') as fp:
try:
pl = plistlib.load(fp)
except Exception as e:
except Exception as err:
self.logger.warning(f"getPluginList: Unable to parse plist, skipping: {path}, err = {err}")
else:
bundleId = pl["CFBundleIdentifier"]
Expand Down

0 comments on commit 27ffd0e

Please sign in to comment.