Skip to content

Commit

Permalink
correct handling for non ASCII characters in plugin installer (fix #8452
Browse files Browse the repository at this point in the history
)
  • Loading branch information
alexbruy committed Aug 12, 2013
1 parent 7b57676 commit ec2992e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/pyplugin_installer/installer.py
Expand Up @@ -506,5 +506,7 @@ def deleteRepository(self, reposName):
# ----------------------------------------- #
def setRepositoryInspectionFilter(self, reposName = None):
""" temporarily block another repositories to fetch only one for inspection """
if reposName is not None:
reposName = reposName.decode("utf-8")
repositories.setInspectionFilter(reposName)
self.reloadAndExportData()

0 comments on commit ec2992e

Please sign in to comment.