Skip to content

Commit

Permalink
Merge pull request AlessandroZ#501 from plonibarploni/patch-4
Browse files Browse the repository at this point in the history
python uses or, not ||
  • Loading branch information
AlessandroZ authored May 21, 2020
2 parents 1d082b5 + fe020ef commit 5502e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Linux/lazagne/softwares/wallet/libsecret.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(self):
# for k, v in item.get_attributes().iteritems():
# values[unicode(k)] = unicode(v)
items.append(values)
if item.get_label() == 'Chrome Safe Storage' || item.get_label() == 'Chromium Safe Storage':
if item.get_label() == 'Chrome Safe Storage' or item.get_label() == 'Chromium Safe Storage':
constant.chrome_storage = item.get_secret()

try:
Expand Down

0 comments on commit 5502e75

Please sign in to comment.