From 74c00be06176439f1d9afafca1e6edc2de512d0b Mon Sep 17 00:00:00 2001 From: Alessandro Pasotti Date: Tue, 27 Sep 2016 15:41:04 +0200 Subject: [PATCH] No need to decode a str --- python/pyplugin_installer/installer.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/pyplugin_installer/installer.py b/python/pyplugin_installer/installer.py index f646579193d..3996c66ae77 100644 --- a/python/pyplugin_installer/installer.py +++ b/python/pyplugin_installer/installer.py @@ -444,7 +444,6 @@ class QgsPluginInstaller(QObject): """ edit repository connection """ if not reposName: return - reposName = reposName.decode('utf-8') checkState = {False: Qt.Unchecked, True: Qt.Checked} dlg = QgsPluginInstallerRepositoryDialog(iface.mainWindow()) dlg.editName.setText(reposName)