mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
py3: when shuffling dictionary keys, use an explicit list
This commit is contained in:
parent
71d13c9482
commit
4a615ee09c
@ -207,7 +207,7 @@ class SearchDialog(QDialog, Ui_Dialog):
|
|||||||
# there is a search. This way plugins closer
|
# there is a search. This way plugins closer
|
||||||
# to a don't have an unfair advantage over
|
# to a don't have an unfair advantage over
|
||||||
# plugins further from a.
|
# plugins further from a.
|
||||||
store_names = self.store_checks.keys()
|
store_names = list(self.store_checks)
|
||||||
if not store_names:
|
if not store_names:
|
||||||
return
|
return
|
||||||
# Remove all of our internal filtering logic from the query.
|
# Remove all of our internal filtering logic from the query.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user