Skip to content

Commit ec2992e

Browse files
committedAug 12, 2013
correct handling for non ASCII characters in plugin installer (fix #8452)
1 parent 7b57676 commit ec2992e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎python/pyplugin_installer/installer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,5 +506,7 @@ def deleteRepository(self, reposName):
506506
# ----------------------------------------- #
507507
def setRepositoryInspectionFilter(self, reposName = None):
508508
""" temporarily block another repositories to fetch only one for inspection """
509+
if reposName is not None:
510+
reposName = reposName.decode("utf-8")
509511
repositories.setInspectionFilter(reposName)
510512
self.reloadAndExportData()

0 commit comments

Comments
 (0)
Please sign in to comment.