Skip to content

Commit

Permalink
Explicitly convert keys-view to list
Browse files Browse the repository at this point in the history
  • Loading branch information
dgdekoning committed Nov 8, 2019
1 parent a30c0f3 commit 21cbdc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activity_browser/app/ui/wizards/db_import_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def initializePage(self):
del self.system_models["universal"]
self.version_combobox.clear()
self.system_model_combobox.clear()
self.version_combobox.addItems(self.system_models.keys())
self.version_combobox.addItems(list(self.system_models.keys()))
# Adding the items will cause system_model_combobox to update
# and show the correct list, this is just to be sure.
self.update_system_model_combobox(self.version_combobox.currentText())
Expand Down

0 comments on commit 21cbdc0

Please sign in to comment.