Skip to content

Commit

Permalink
safari minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ydkhatri committed Jul 17, 2021
1 parent 2b9813f commit e39068a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/safari.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ def ReadExtensionsPlist(plist, safari_items, source_path, user):
info = ''
enabled = ext.get('Enabled', '')
if enabled != '':
info += 'Enabled:' + str(info)
for key, val in plist.get('WebsiteAccess', {}).items():
info += 'Enabled:' + str(enabled)
for key, val in ext.get('WebsiteAccess', {}).items():
info += f', {key}:{val}'
si = SafariItem(SafariItemType.EXTENSION, '', ext_name,
None, info, user, source_path)
Expand Down

0 comments on commit e39068a

Please sign in to comment.