summaryrefslogtreecommitdiff
path: root/nephilim/plugins/AlbumCover.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-11-08 15:38:39 +0100
committerAnton Khirnov <anton@khirnov.net>2020-11-08 15:38:39 +0100
commitdeb35230eb8ded52e9450cf1cc0aa218c62b9e02 (patch)
treee6570d9c9d2465ec0ccac7343282d45ec90e3350 /nephilim/plugins/AlbumCover.py
parentded8496439c0a1bfa2d244470cbd99113b8e84be (diff)
plugin: more pyqt5 port fixes
Diffstat (limited to 'nephilim/plugins/AlbumCover.py')
-rw-r--r--nephilim/plugins/AlbumCover.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nephilim/plugins/AlbumCover.py b/nephilim/plugins/AlbumCover.py
index c576c56..ea34b4b 100644
--- a/nephilim/plugins/AlbumCover.py
+++ b/nephilim/plugins/AlbumCover.py
@@ -181,7 +181,7 @@ class AlbumCover(Plugin):
# sites list
fetchers = self.settings.value('fetchers')
self.fetcherlist = QtWidgets.QListWidget(self)
- self.fetcherlist.setDragDropMode(QtGui.QAbstractItemView.InternalMove)
+ self.fetcherlist.setDragDropMode(QtWidgets.QAbstractItemView.InternalMove)
for site in fetchers:
it = QtWidgets.QListWidgetItem(site)
it.setCheckState(QtCore.Qt.Checked)