Skip to content

Commit

Permalink
python uses or, not ||
Browse files Browse the repository at this point in the history
  • Loading branch information
plonibarploni authored May 20, 2020
1 parent 1d082b5 commit fe020ef
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 fe020ef

Please sign in to comment.