comparison mercurial/localrepo.py @ 17306:7d2967de2c04 stable

obsolete: fix typos in comments introduced by 6955d69a52a4
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 31 Jul 2012 15:57:50 +0200
parents e51d4aedace9
children 9f94358f9f93
comparison
equal deleted inserted replaced
17305:e66fa4d587dc 17306:7d2967de2c04
288 288
289 @storecache('obsstore') 289 @storecache('obsstore')
290 def obsstore(self): 290 def obsstore(self):
291 store = obsolete.obsstore(self.sopener) 291 store = obsolete.obsstore(self.sopener)
292 if store and not obsolete._enabled: 292 if store and not obsolete._enabled:
293 # message is rare enough to not be stranlated 293 # message is rare enough to not be translated
294 msg = 'obsolete feature not enabled but %i markers found!\n' 294 msg = 'obsolete feature not enabled but %i markers found!\n'
295 self.ui.warn(msg % len(list(store))) 295 self.ui.warn(msg % len(list(store)))
296 return store 296 return store
297 297
298 @propertycache 298 @propertycache