##// END OF EJS Templates
fixed problems with re-indexing non-ascii names of repositories
marcink -
r2841:2fa3c09f beta
parent child Browse files
Show More
@@ -77,6 +77,8 b' class WhooshIndexingDaemon(object):'
77 77
78 78 #filter repo list
79 79 if repo_list:
80 #Fix non-ascii repo names to unicode
81 repo_list = map(safe_unicode, repo_list)
80 82 self.filtered_repo_paths = {}
81 83 for repo_name, repo in self.repo_paths.items():
82 84 if repo_name in repo_list:
General Comments 0
You need to be logged in to leave comments. Login now