##// END OF EJS Templates
hgwebdir: handle IOErrors from localrepo while enumerating...
timeless@gmail.com -
r13796:6337149f default
parent child Browse files
Show More
@@ -251,6 +251,9 b' class hgwebdir(object):'
251 251 # update time with local timezone
252 252 try:
253 253 r = hg.repository(self.ui, path)
254 except IOError:
255 u.warn(_('error accessing repository at %s\n') % path)
256 continue
254 257 except error.RepoError:
255 258 u.warn(_('error accessing repository at %s\n') % path)
256 259 continue
General Comments 0
You need to be logged in to leave comments. Login now